需要帮助..
我正在学习如何通过自己构建一个wordpress主题,如果使用函数-
,我会将分隔符|
更改为add_theme_support( ‘title-tag’ );
。据我所知,可以使用wp_title()
函数。
答案 0 :(得分:1)
从4.1版开始,不鼓励开发人员使用wp_title()
函数。所以你现在应该忽略那部分。
要使用title-tag
更改分隔符,您可以使用以下过滤器:
add_filter('document_title_separator', 'my_custom_separator');
function my_custom_separator($sep){
$sep = '-';
return $sep;
}