Joomla,每篇文章后的静态文本

发布于 2024-12-23 18:46:02 字数 71 浏览 2 评论 0原文

有谁知道如何在joomla的每篇文章下添加一段代码。 Joomla 版本 1.5。 我应该编辑哪些文件或者可能有一些插件或组件?

Is there anyone who knows how to add piece of code under every article of joomla. Joomla version 1.5.
Whitch files I should edit or maybe theres some plugin or component?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

比忠 2024-12-30 18:46:02

您可以创建系统/内容插件
它应该在 onPrepareContent 触发器上工作

function onPrepareContent($item, $params, $limitstart)
{
   // append text in $item->text
}

You can create a system/content plugin
which should work on onPrepareContent trigger

function onPrepareContent($item, $params, $limitstart)
{
   // append text in $item->text
}
沙沙粒小 2024-12-30 18:46:02

另一种方法是在模板中覆盖 com_content 的视图并在其中添加一些静态文本。你可以尝试的简单的事情就是去
\components\com_content\views\article\tmpl\ 从那里选择 default.php 并将其放入 templates\template_name\html\com_content\article\

现在在这里更改默认值.php 包含该静态文本。

one other way can be in template you override the view of com_content and add some static text in there. Simple thing you can try is go to
\components\com_content\views\article\tmpl\ pick default.php from there and put it in templates\template_name\html\com_content\article\

now here change the default.php to contain that static text.

像你 2024-12-30 18:46:02

如果您需要一些文本/html(不是 php 代码),那么您可以使用此插件:http://extensions.joomla.org/extensions/style-a-design/articles-styling/7404
- 它有很多配置选项

if you need some text/html (not php code), than you can use this plugin: http://extensions.joomla.org/extensions/style-a-design/articles-styling/7404
- it has a lot of configuration options

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文