2014-04-02 10 views
1

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

답변

2

음,

일부 플러그인은 여러 기능을 갖춘 이미지 즉 Dynamic Featured Image, Multiple Featured Images 사용할 수 있습니다. 이러한 플러그인을 통해 쉽게 관리 할 수 ​​있습니다. dynamic featured image

및이 방법에 의해 프론트 엔드에서 이러한 여러 이미지를 얻을 수 있습니다 :

+0

나는 가능한 한 작은 플러그인을 사용하고 싶습니다. 하지만 작동시키지 못하면 플러그인 중 하나를 사용하게 될 것입니다. 감사합니다 –

4

당신은 단순히이 플러그인에 의해 그것을 할 수

if(class_exists('Dynamic_Featured_Image')) { 
    global $dynamic_featured_image; 

    $featured_images = $dynamic_featured_image->get_featured_images(); 
    //print_r($featured_images); 

    //You can now loop through the image to display them as required 
    foreach($featured_images as $featured_image) { 
     echo "<img src='".$featured_image['full']."'></a>"; 
    } 

} 
+0

당신은 전설입니다! –