我想显示父选择,以便我可以选择父级进行布局。
这在WordPress论坛中没有得到回答。它可能是一个缺失或即将到来的功能。有人有这个工作吗?
register_post_type('foo', array(
'hierarchical' => true,
'labels' => array(
'name' => 'Foo',
'singular_name' => 'Foo'
),
'public' => true,
'supports' => array(
'title', 'editor', 'author', 'page-attributes'
)
));
答案 0 :(得分:4)
只有当您拥有此自定义类型的至少一个条目时,才会显示父选择选项。