如何向 <title> 添加额外的文本Joomla 中的标签

How to add extra text to the lt;titlegt; tag in Joomla(如何向 title 添加额外的文本Joomla 中的标签)
本文介绍了如何向 <title> 添加额外的文本Joomla 中的标签的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要在 joomla 网站的标题标签中添加额外的文本(硬线).但我似乎无法在 Joomla 中找到该标签的位置.有大佬知道在哪里吗?汉克斯

I need to add extra text (Hard cord) to the title tag on a joomla website. But I cant seem to find where the tag is located in Joomla. Does any of you guys know where it is located? hanks

推荐答案

尝试将此添加到您的页面

Try adding this to your pages

<?php 
if (@$_REQUEST['view'] != 'frontpage') {
$document =& JFactory::getDocument();
$document->setTitle("My Custom Text - ".$document->getTitle());
}
?>

<?php 
if (@$_REQUEST['view'] != 'frontpage') {
$document =& JFactory::getDocument();
$document->setTitle($document->getTitle() . " - My Custom Text");
}
?>

<?php 
if (@$_REQUEST['view'] != 'frontpage') {
$document =& JFactory::getDocument();
$document->setTitle("My Custom Text");
}
?>

如果您正在寻找类似于 joomla 中设置的不那么动态的东西,然后进入您的站点菜单,我认为在全局下,自从我使用 joomla 以来已经有一段时间了,其中一些应该有一个框来输入独特的标题将出现在所有页面上.

if your looking for something less dynamic that resembles a setting in joomla then go into your site menu, under global I think, its been a while since ive used joomla and some where within there there should be a box to type a unique title in that will be on all pages.

这篇关于如何向 <title> 添加额外的文本Joomla 中的标签的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Convert JSON integers and floats to strings(将JSON整数和浮点数转换为字符串)
in php how do I use preg replace to turn a url into a tinyurl(在php中,如何使用preg替换将URL转换为TinyURL)
all day appointment for ics calendar file wont work(ICS日历文件的全天约会不起作用)
trim function is giving unexpected values php(Trim函数提供了意外的值php)
Basic PDO connection to MySQL(到MySQL的基本PDO连接)
PHP number_format returns 1.00(Php number_Format返回1.00)