站点标题和标记行(两者都是)显示在我的Meta标题/站点标题上

时间:2017-06-01 作者:Ferdin Ahmed

在我的wordpress网站中,网站标题和标签行(都显示在标题标签的位置)。我只想显示标题标签。我现在能做什么。请帮帮我。

请检查图片:meta Title and meta Tag both show on browser bar 请使用浏览器查看我的网站。并将鼠标光标放在浏览器的顶部。

我的网站:http://songspkdj.com/

提前感谢您的帮助。

1 个回复
SO网友:Johansson

您可以使用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文件。

您可以随意更改上述代码并添加/删除您想要查看或隐藏的部分。

结束

相关推荐