web-dev-qa-db-ja.com

メディアギャラリーのすべての画像を取得する

メディアギャラリーで _ all _ imagesのURLを取得する方法はありますか?

Webサイトがメディアギャラリーからすべての画像を取得するPicturesページを持つのは簡単な方法だと思います。ただし、特定のシナリオでのみ必要になることを前提としています。

画像ページの作成方法に関する説明は必要ありません。すべての画像URLを取得する方法だけです。ありがとうございます。

27
Jared
$query_images_args = array(
    'post_type'      => 'attachment',
    'post_mime_type' => 'image',
    'post_status'    => 'inherit',
    'posts_per_page' => - 1,
);

$query_images = new WP_Query( $query_images_args );

$images = array();
foreach ( $query_images->posts as $image ) {
    $images[] = wp_get_attachment_url( $image->ID );
}

すべての画像のURLは$imagesになりました。

47
Azizur Rahman
$media_query = new WP_Query(
    array(
        'post_type' => 'attachment',
        'post_status' => 'inherit',
        'posts_per_page' => -1,
    )
);
$list = array();
foreach ($media_query->posts as $post) {
    $list[] = wp_get_attachment_url($post->ID);
}
// do something with $list here;

すべてのメディアライブラリアイテム(投稿に添付されているものだけではありません)についてデータベースをクエリし、それらのURLを取得し、それらすべてを$list配列にダンプします。

17
somatic
<?php
    $attachments = get_children( array('post_parent' => get_the_ID(), 'post_type' => 'attachment', 'post_mime_type' =>'image') );
    foreach ( $attachments as $attachment_id => $attachment ) {
            echo wp_get_attachment_image( $attachment_id, 'medium' );
    }
?>

これは投稿/ページのすべての添付ファイルを引っ張ります。投稿にもっと画像を添付すると、それが一覧表示されます

6
stffn

[OK]を使用して、メディアライブラリ内のすべての画像を表示します。

$args = array(
    'post_type' => 'attachment',
    'post_status' => 'published',
    'posts_per_page' =>25,
    'post_parent' => 210, // Post-> ID;
    'numberposts' => null,
);

$attachments = get_posts($args);

$post_count = count ($attachments);

if ($attachments) {
    foreach ($attachments as $attachment) {
    echo "<div class=\"post photo col3\">";
        $url = get_attachment_link($attachment->ID);// extraigo la _posturl del attachmnet      
        $img = wp_get_attachment_url($attachment->ID);
        $title = get_the_title($attachment->post_parent);//extraigo titulo
        echo '<a href="'.$url.'"><img title="'.$title.'" src="'.get_bloginfo('template_url').'/timthumb.php?src='.$img.'&w=350&h=500&zc=3"></a>';
        echo "</div>";
    }   
}

ショーのページ区切りの方法がわかっている場合は、回答してください。

5
Hegel

しばらくは更新されていないように見えますが、 Media Library Gallery プラグインを見始めるとよいでしょう。

3
ZaMoose

これは、 answerget_posts() および array_map() を使用した短いバージョンです。

$image_ids = get_posts(
    array(
        'post_type'      => 'attachment',
        'post_mime_type' => 'image',
        'post_status'    => 'inherit',
        'posts_per_page' => - 1,
        'fields'         => 'ids',
    ) );

$images = array_map( "wp_get_attachment_url", $image_ids );
1
jgraup