如何获得自定义帖子类型的默认自定义字段用户界面?
答案 0 :(得分:0)
您只需将custom-field
放在supports
部分。
例如
register_post_type( 'location',
array(
'labels' => array(
'name' => __( 'Locations' ),
'singular_name' => __( 'Location' )
),
'public' => true,
'show_ui' => true,
'supports' => array('title',
'editor',
'thumbnail',
'excerpt',
'custom-fields'
),
'rewrite' => array('slug' => 'locations')
)
);