我想制作一个带有徽标和业务本身照片的业务页面。我为此使用了自定义帖子类型。但是,我无法使第二张特色图片正常工作。我想让它在没有插件的情况下工作。这是我的代码:
function create_post_type() {
register_post_type(
'Bedrijven', array(
'labels' => array(
'name' => __( 'Bedrijven' ),
'singular_name' => __( 'bedrijf' )
),
'public' => true,
'has_archive' => true,
'supports' => array(
'title',
'editor',
'comments',
'excerpt',
'thumbnail',
'author',
'MultiPostThumbnails',
'page-attributes',)
)
);
}
add_action( 'init', 'create_post_type' );
if (class_exists('MultiPostThumbnails')) {
new MultiPostThumbnails(array(
'label' => 'Thumbnail Image',
'id' => 'thumbnail-image',
'post_type' => 'bedrijven'
) );
}