如何逐页设置搜索引擎优化标题标签?

时间:2018-12-22 作者:Tintinabulator Zea

我正在用高级自定义字段存储SEO标题。如何在我的单个mypost中设置seo标题标签。php模板。这是我可以调用get\\u字段(“title\\u tag”)的地方;

我尝试将其添加到函数中。php:

add_filter(\'wpseo_title\', \'filter_product_wpseo_title\');
function filter_product_wpseo_title($title) {
    if(  is_singular( \'my_post_type\') ) {   
        $title = get_field("title_tag");
    }
    return $title;
}

1 个回复
SO网友:Tintinabulator Zea

我将此添加到函数中。php同时激活了Yoast SEO,然后它就工作了!

add_filter(\'wpseo_title\', \'filter_product_wpseo_title\');
function filter_product_wpseo_title($title) {
    if(  is_singular( \'my_post_type\') ) {   
        $title = get_field("title_tag");
    }
    return $title;
}

相关推荐

Yoast SEO过滤器钩子wpseo_sitemap_urlimages何时启动?

我正在尝试将一个简单的函数附加到Yoast SEO过滤器挂钩wpseo_sitemap_urlimages 并让函数运行,但我不能这样做。我的代码是:function tp_filter_wpseo_sitemap_urlimages($images, $post_id) { error_log(\"test message\"); return $images; } add_filter(\'wpseo_sitemap_urlimages\', \'tp_