问问题
12179 次
4 回答
3
@George Wilson 很接近,但$this
只会根据您所处的环境/
相反,您几乎可以在任何地方做如下简单的事情(尽管这应该是由组件或插件设置的,专门用于以某种方式全局改进页面标题)。
JFactory::getDocument()->setTitle('Set your title here');
请注意,如果您在模块或其他地方设置它,其他东西可能会在代码的后面出现并覆盖它。
于 2013-02-14T19:10:03.780 回答
1
title
标签不应由模块设置,而应由页面上的组件设置。话虽如此,您可以通过以下方式做到:
<?php
$app = JFactory::getApplication();
$this->setTitle( 'This is the title that you wish to place' );
?>
链接在这里了解更多信息
于 2013-02-14T12:10:44.863 回答
0
我猜你想要这个:
public_html/libraries/joomla/document/html/renderer/head.php
看看LINE 102上的那个。你将能够控制一切...... :-)
于 2013-09-29T23:09:33.257 回答
-1
添加以下行:
JFactory::getDocument()->setTitle('Set your title here');
后
$app = JFactory::getApplication();
在以下文件中:
public_html/libraries/joomla/document/html/renderer/head.php
于 2015-06-23T15:32:31.297 回答