首页 文章

Wordpress帖子 - 附加图像

提问于
浏览
1

有没有办法将所有附加图像显示到某个帖子?我正在使用Nivo Slider jQuery插件,并寻找一种智能的方式来添加图像 . 最好的只是创建一个帖子,然后在滑块中附加我想要的图像 . 所以我需要的是某种循环,它回应某个帖子的所有附加图像 .

1 回答

  • 1
    global $post;
    $attachements = query_posts(
        'post_type' => 'attachment',
        'post_parent' => $post->ID, // or static id, i.e. 7
        'posts_per_page' => -1
    );
    foreach($attachements as $attachment){
        $thumbimg = wp_get_attachment_link( $attachment->ID, 'thumbnail-size', true );
        echo $thumbimg;
    }
    

    More.

相关问题