[Plugin: Multiple Post Thumbnails] Custom Post Type Registration & Supports
-
Hello,
I’m trying to get this to work with a custom post type that is using custom fields (via the More Fields plugin). I can’t get the Multiple Post Thumbnails plugin meta box to show up on my custom posts. I’ve only set a couple of things in my supports array when registering the custom post, and I think this is where I’m running into trouble.
$args = array( 'labels' => $labels, 'public' => true, 'publicly_queryable' => true, 'show_ui' => true, 'query_var' => true, 'rewrite' => true, 'capability_type' => 'post', 'hierarchical' => false, 'menu_position' => null, 'supports' => array('thumbnail','custom fields','MultiPostThumbnails') ); register_post_type( 'videos' , $args );
As you can see, I tried throwing ‘MultiPostThumbnails’ into my supports. And I’ve tried everything else I can think of to get it to show up with no luck. Is there an obvious answer to this, or am I barking up the wrong tree? Thanks.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘[Plugin: Multiple Post Thumbnails] Custom Post Type Registration & Supports’ is closed to new replies.