Joomla,每篇文章后的静态文本
有谁知道如何在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以创建系统/内容插件
它应该在
onPrepareContent
触发器上工作You can create a system/content plugin
which should work on
onPrepareContent
trigger另一种方法是在模板中覆盖 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 intemplates\template_name\html\com_content\article\
now here change the default.php to contain that static text.
如果您需要一些文本/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