'hierarchical' => true 不显示父选择器

Dea*_*ley 5 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'
    )
));
Run Code Online (Sandbox Code Playgroud)

soj*_*oju 4

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