我正在用高级自定义字段存储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;
}