Jquery Wordpress帖子-附图片

Jquery Wordpress帖子-附图片,jquery,attachment,wordpress,nivo-slider,Jquery,Attachment,Wordpress,Nivo Slider,有没有办法将所有附加的图像显示到某个帖子上?我正在使用Nivo Slider jQuery插件,并寻找一种智能的方式向其添加图像。最好只是创建一个帖子,然后将我想要的图像附加到滑块中。所以,我需要的是某种循环,它能回显某个帖子的所有附加图像 global $post; $attachements = query_posts( 'post_type' => 'attachment', 'post_parent' => $post->ID, // or static

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

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;
}


啊,这是本论坛的新成员。我不知道我应该标出正确的答案。感谢您的提醒,这是本论坛的新成员。我不知道我应该标出正确的答案。谢谢你的提醒。如果你使用了相同的代码,可能是你有一些拼写错误,可能是你的代码有误。如果你使用了相同的代码,可能是你有一些拼写错误,可能是你的代码有误。。