'hierarchical'=>如果没有调出父选择器,则为true

时间:2012-04-19 07:49:24

标签: wordpress hierarchical

我想显示父选择,以便我可以选择父级进行布局。

这在WordPress论坛中没有得到回答。它可能是一个缺失或即将到来的功能。有人有这个工作吗?

register_post_type('foo', array(
    'hierarchical' => true,
    'labels' => array(
        'name' => 'Foo',
        'singular_name' => 'Foo'
    ),
    'public' => true,
    'supports' => array(
        'title', 'editor', 'author', 'page-attributes'
    )
));

1 个答案:

答案 0 :(得分:4)

只有当您拥有此自定义类型的至少一个条目时,才会显示父选择选项。