首页 文章

从og:title Yoast seo插件中删除网站名称

提问于
浏览
0

我有一个yoast seo插件的问题;我想从og:title中删除网站名称 .

实际上,元 Headers : Headers ,显示 Headers 为“ Headers 页面”的内容 .

<meta property="og:title" content="The title of the page or blog - The title of the site" />

我如何删除网站名称,所以og:title只显示页面或博客的 Headers ?

public function og_title( $echo = true ) {
    if ( is_singular() ) {
        $title = WPSEO_Meta::get_value( 'opengraph-title' );
        if ( $title === '' ) {
            $title = WPSEO_Frontend::get_instance()->title( '' );
        }
        else {
            // Replace WP SEO Variables
            $title = wpseo_replace_vars( $title, get_post() );
        }
    }
    else if ( is_front_page() ) {
        $title = ( $this->options['og_frontpage_title'] !== '' ) ? $this->options['og_frontpage_title'] : WPSEO_Frontend::get_instance()->title( '' );
    }
    else {
        $title = WPSEO_Frontend::get_instance()->title( '' );
    }

    /**
     * Filter: 'wpseo_opengraph_title' - Allow changing the title specifically for OpenGraph
     *
     * @api string $unsigned The title string
     */
    $title = trim( apply_filters( 'wpseo_opengraph_title', $title ) );

    if ( is_string( $title ) && $title !== '' ) {
        if ( $echo !== false ) {
            $this->og_tag( 'og:title', $title );

            return true;
        }
    }

    if ( $echo === false ) {
        return $title;
    }

    return false;
}

谢谢

1 回答

  • 0

    有一个过滤器可用于修改Yoast SEO插件中的og Headers : wpseo_opengraph_title 将此功能添加到您的functions.php中 . 如有必要,请更换sepparator角色 .

    add_filter('wpseo_opengraph_title','mysite_ogtitle', 999);
    function mysite_ogtitle($title) {
    
        $sepparator = " - ";
        $the_website_name = $sepparator . get_bloginfo( 'name' );
        return str_replace( $the_website_name, '', $title ) ;
    
    }
    

相关问题