如果设置了我的精选图片,请设置

时间:2017-04-02 21:53:16

标签: php html wordpress

我现在设置了自定义帖子类型,每个帖子最多可添加6个精选图片。我想循环浏览6个特色图像并生成HTML IF,其中有特色图像。

以下是我遇到一些麻烦的代码片段。我当时正在考虑我能够回应它,但它仍然会在没有额外特色图像的其他帖子上生成标签。这是我试图让它工作的地方:http://testing.bdanzer.com/tabs/我只是想在下拉列表中的帖子上加载小缩略图。大图像仅适用于第一个缩略图。如果有意义,我只是在加载2-6时遇到问题。

<div class="bdanzer-thumbnails">

    <?php
    if (has_post_thumbnail()) { //if a thumbnail has been set
        //get the id of the featured image
        $imgID = get_post_thumbnail_id($post->ID); 

        //get the url of the featured image (returns an array)
        $featuredImage = wp_get_attachment_image_src($imgID, 'full'); 

        $imgURL = MultiPostThumbnails::get_post_thumbnail_url(get_post_type(),
        'feature-image-2', NULL, 'large');

        echo '<img src="' . $imgURL . '"/>';
    }

    ?>
</div> 

0 个答案:

没有答案
相关问题