答案 0 :(得分:2)
在wordpress主题中有很多标题标签,但我认为你要找的是:wp-content/themes/theme_name/header.php
<title><?php wp_title( '|', true, 'right' ); ?></title>
答案 1 :(得分:1)
通常标题标签位于header.php
中/wp-content/themes/(your theme name here)/header.php
答案 2 :(得分:1)
<title>
标记可以在主题基目录的header.php文件中找到。
这通常调用wp_title函数,根据wordpress文档,可以在wp-includes&gt; general-template.php中找到
答案 3 :(得分:1)
上述答案适用于4.1之前的WordPress版本。实际上有一种更简单,更动态的方法是将标题标签添加到WordPress中,并不需要硬编码<title>
。
如果你有WordPress版本4.1或更高版本,你可能想检查你的函数文件:add_theme_support( 'title-tag' );
如果那里有,那么WordPress正在生成标题标签。