로고와 비즈니스 사진 자체가있는 비즈니스 페이지를 만들고 싶습니다. 여기에 맞춤 포스트 유형을 사용합니다. 그러나 나는 작동하도록 두 번째 추천 이미지를 만들 수 없습니다. 플러그인없이 작동하게하고 싶습니다. 이 내 코드입니다 :여러 추천 이미지 wordpress
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'
));
}
나는 가능한 한 작은 플러그인을 사용하고 싶습니다. 하지만 작동시키지 못하면 플러그인 중 하나를 사용하게 될 것입니다. 감사합니다 –