1

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

4

1 回答 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;
}

更多的。

于 2012-07-06T11:27:57.503 回答