[Plugin: Multiple Post Thumbnails] A tip to work properly
-
This plugin will work properly only if you use it inside an “init” wordpress action. Like this:
add_action('init', "init"); function init(){ if (class_exists('MultiPostThumbnails')) { $types = array('custom_post_type_name','post'); foreach($types as $type) { new MultiPostThumbnails(array( 'label' => 'Thumbnail Title', 'id' => 'my_custom_thumb_id', 'post_type' => $type ) ); } } }If you don´t use it just like this, you´ll not be able to set any thumbnails despite the meta box appear correctly
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘[Plugin: Multiple Post Thumbnails] A tip to work properly’ is closed to new replies.