我有一个名为" Designer"的自定义帖子类型每个帖子将使用不同的唯一高级自定义字段,因为每个帖子都有唯一的模板。通过以下代码,我能够为Designer帖子类型中的每个帖子提供规则并保存,但自定义字段不会显示在后端的帖子编辑页面上。 通常这个代码应该ork但不知道代码发生了什么
请帮助。
add_filter('acf/location/rule_types', 'acf_location_rules_types');
function acf_location_rules_types( $choices )
{
$choices['Custom Post types']['cpt_parent'] = 'Custom post type parent';
return $choices;
}
add_filter('acf/location/rule_values/cpt_parent', 'acf_location_rules_values_cpt_parent');
function acf_location_rules_values_cpt_parent( $choices )
{
$args = array(
'hierarchical' => true,
'_builtin' => false
);
$posttypes = get_post_types( $args );
if( $posttypes )
{
foreach( $posttypes as $posttype ):
if( $posttype != 'acf' ):
$args = array(
'post_type' => 'designer',
'posts_per_page' => -1,
'post_status' => 'publish'
);
$customposts = get_posts( $args );
if ( $customposts ) {
foreach( $customposts as $custompost ){
$choices[ $custompost->ID] = $custompost->post_title;
}
}
endif;
endforeach;
}
return $choices;
}
//MATCH THE RULE
add_filter('acf/location/rule_match/cpt_parent', 'acf_location_rules_match_cpt_parent', 10, 3);
function acf_location_rules_match_cpt_parent( $match, $rule, $options )
{
global $post;
$selected_post = (int) $rule['value'];
// post parent
$post_parent = $post->post_parent;
if( $options['page_parent'] ) {
$post_parent = $options['page_parent'];
}
if ($rule['operator'] == "=="){
$match = ( $post_parent == $selected_post );
}
elseif ($rule['operator'] != "!="){
$match = ( $post_parent != $selected_post );
}
return $match;
}
答案 0 :(得分:7)
您的Artist Collection字段组设置为仅显示在一个帖子上,即帖子设计师帖子1,它是一个Designer Post类型。
我不明白所有代码的用途是什么?只需为每个需要不同字段组的帖子创建不同的字段组,并为每个字段创建单独的规则。
好的抱歉,我现在理解了这个问题,并在本地安装中重新创建了该问题。
在下面的代码行中,您正在寻找post_parent,但我认为您应该在寻找ID。
我改变了这个:
$post_parent = $post->post_parent;
到此:
$post_parent = $post->ID;
它对我有用。
答案 1 :(得分:-1)
如果我理解你的问题,请在wp-admin post edit页面点击右上角的屏幕选项。在出现的菜单中,确保选中“自定义”字段。这将使自定义字段显示为可编辑。