php - Custom Fields not showing in custom post type post -
i have custom post type named "designer" each posts using different unique advanced custom fields each posts has unique templates.with below code able give rules each posts in designer post type , save custom fields not displaying on post edit pages on backend. code should ork no idea happend code please help. 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 $posttype ): if( $posttyp