您可以使用wp_title
过滤器可将您的标题更改为您想要的任何内容。
add_filter( \'wp_title\', \'my_title\', 10, 2 );
function my_title( $title, $sep ) {
global $page, $paged;
if ( is_feed() )
return $title;
// Add the site title to the page\'s title
$title .= get_bloginfo( \'name\' );
// Add the tagline to homepage (remove the 3 below lines if you don\'t need)
$site_description = get_bloginfo( \'description\', \'display\' );
if ( $site_description && ( is_home() || is_front_page() ) )
$title .= " $sep $site_description";
// Add a page number if necessary:
if ( $paged >= 2 || $page >= 2 )
$title .= " $sep " . sprintf( __( \'Page %s\', \'text-domain\' ), max( $paged, $page ) );
return $title;
}
以上代码将根据您当前所在的位置更新您的博客标题。
请注意,您的主题必须支持标题标记。如果没有,则应使用添加支持add_theme_support( \'title-tag\' );
在主题的功能中。php文件。
您可以随意更改上述代码并添加/删除您想要查看或隐藏的部分。