根据您输出标题的方式,答案是不同的。但有两种可能性。
通过使用wp_title();
如果主题使用
wp_title();
its中的函数
header.php
文件,您可以使用
wp_title
滤器但是,自4.4以来,该函数一直被弃用。
add_filter( \'wp_title\', \'filter_the_title\' );
function filter_the_title( $title ) {
$title = str_replace( \' \', \',\' , $title);
return $title;
}
通过使用add_theme_support( \'title-tag\' );
较新的主题添加此方法以启用标题标记支持。如果这是您的情况,您可以使用
pre_get_document_title
筛选以执行此操作。
add_filter( \'pre_get_document_title\', \'filter_the_title\' );
function filter_the_title( $title ) {
$title = str_replace( \' \', \',\' , $title);
return $title;
}