‘hierarchical’ => true not bringing up the parent selector

I want to display the parent select so I can select the parent for layout purposes.

This was un answered in the WordPress forum. It may be a missing or coming feature. Has anyone got this to work?

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

Related posts

Leave a Reply

1 comment