如果您使用的是Yoast SEO插件(看起来是),那么this 答案可能对你有帮助
如果您使用的是yoast SEO插件,那么最简单的方法就是从“标题和元数据->分类->类别”中删除存档字
查找:
%%term\\u title%%Archives%%page%%%%sep%%%%sitename%%替换为:
%%term\\u标题%%%%%页面%%%%sep%%%%%站点名%%
或者,您可以尝试使用get_the_archive_title
按说明筛选here
add_filter( \'get_the_archive_title\', function ($title) {
if ( is_category() ) {
$title = single_cat_title( \'\', false );
} elseif ( is_tag() ) {
$title = single_tag_title( \'\', false );
} elseif ( is_author() ) {
$title = \'<span class="vcard">\' . get_the_author() . \'</span>\' ;
}
return $title;
});