我没有得到的第一件事是$独家->;y能否共享您创建的自定义字段设置?
我发现的第二件事是,你必须把全球美元贴在上面;在函数的第一行中:
add_filter( \'the_title\', \'wpb_new_title\', 10, 2 );
function wpb_new_title( $title, $id ) {
global $post;
if(\'post\' == get_post_type($id)){
$exclusive = get_field(\'exclusive\', $id); // pass the id into get_field
$title = $title .\', \' . $exclusive;
}
return $title;
}
我在默认帖子上添加了一个标题。请参见设置和查看页面的屏幕截图。在viewpage中,我的帖子名是Hello World,我正在添加“Hello World”;,测试附加标题“;从过滤器挂钩。
如果对你有用,请检查一下。也请分享我提到的细节。
谢谢!:)