1

What I need:

  1. User uploads pictures in a gallery via WordPress Media Uploader and publishes them in a post. Let's say post_id = 1 and the post is: [gallery ids"1,2,3,...,n"]
  2. I need a function that gets all image-ids of post_id = 1 in this gallery.
  3. The images should be liked to '.../post-title/attachment/image-title'

I've tried :

$attachements = query_posts(
    array(
        'post_type' => 'attachment',  
        'post_parent' => $post->ID,   
        'posts_per_page' => -1        
         )
);

var_dump($attachements);

My output is:

array(0) { }

Am I just too stupid?

4

3 に答える 3

1

get_post_galleries()投稿内の各ギャラリーに関する情報を取得するために使用できます。falseデータのみを返すには、 の後に必ず渡し$post_idます。

その時点から、さまざまなギャラリーをループして、キーidsからを引き出すことができます。idsこれは実際には文字列なので、 の合計リストに追加するためにexplode()使用する配列に入れる必要があります。array_merge()ids

duplicate を含めることができるためids、実行array_unique()すると、それぞれidが 1 回だけリストされるようになります。

$post_id = 298;

$image_ids = array ();

// get all the galleries in the post
if ( $galleries = get_post_galleries( $post_id, false ) ) {

    foreach ( $galleries as $gallery ) {

        // pull the ids from each gallery
        if ( ! empty ( $gallery[ 'ids' ] ) ) {

            // merge into our final list
            $image_ids = array_merge( $image_ids, explode( ',', $gallery[ 'ids' ] ) );
        }
    }
}

// make the values unique
$image_ids = array_unique( $image_ids );    

// convert the ids to urls -- $gallery[ 'src' ] already holds this info
$image_urls = array_map( "wp_get_attachment_url", $image_ids );    

// ---------------------------- //

echo '<pre>';
print_r ( $image_ids );
print_r ( $image_urls );
echo '</pre>';
于 2016-02-02T02:25:21.223 に答える
0

次のコードを試してください

 $args = array( 
'post_type' => 'attachment', 
'numberposts' => -1, 
'post_status' => null, 
'post_parent' => $page->ID);

$attachments = get_posts( $args );
var_dump($attachements);
于 2013-09-17T08:49:51.237 に答える