听起来您好像在试图修改文档的<title>
标签,而不是通常包装在<h1>
/<h2>
标签,您已经完成了。
如果您使用的主题在WordPress 4.4+ manner, 您可以使用document_title_parts
过滤器:
/**
* document_title_parts
*
* Filters the parts of the document title.
*
* @since 4.4.0
*
* @param array $title {
* The document title parts.
*
* @type string $title Title of the viewed page.
* @type string $page Optional. Page number if paginated.
* @type string $tagline Optional. Site description when on home page.
* @type string $site Optional. Site title when not on home page.
* }
*/
add_filter( \'document_title_parts\', \'wpse241607_document_title_parts\', 10, 1 );
function wpse241607_document_title_parts( $title ) {
$title[\'title\'] = \'##### \' . $title[\'title\'] . \' #####\';
return $title;
}
对于Yoast SEO,您可以查看
wpseo_title
过滤器,用于过滤标题文本。