Thanks Michael for taking the time! I’m really trying to make this work as expected, but with no luck so far.
This is my function in functions.php
note that, hierarchical is true, capability_type is PAGE and
supports has page-attributes.
function product_register() {
$args = array(
'label' => __('Products'),
'singular_label' => __('Product'),
'public' => true,
'show_ui' => true,
'capability_type' => 'page',
'hierarchical' => true,
'menu_position' => 4,
'rewrite' => true,
'supports' => array('title','editor', 'thumbnail', 'page-attributes')
);
register_post_type( 'product' , $args );
}
In the admin area I see Products like if the capability_type
is POST (Bug maybe?) and, of course, I can’t see Parent Attribute
Anyway, this is how my wp-admin looks like:
https://dl.dropbox.com/u/3610132/products.png
Thanks for helping! appreciate ??