Прежде всего, я думаю, необходимо также включить миниатюры:
// This theme uses post thumbnails
add_theme_support( 'post-thumbnails' );
Затем вы должны добавить что-то вроде
if (class_exists('MultiPostThumbnails')) {
$types = array('post', 'page', 'my_post_type');
foreach($types as $type) {
$thumb = new MultiPostThumbnails(array(
'label' => 'Secondary Image',
'id' => 'secondary-image',
'post_type' => $type
)
);
}
}
в вашем файле functions.php тем в функции theme_setup() {...}
.
HTH, мтнесс.