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 に答える