Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I display any type of media within a gallery in Wordpress?

share|improve this question

1 Answer

Take a look at this question, its got extra comments. But I'll copy the important things to answer your question - http://wordpress.stackexchange.com/questions/11662/get-all-images-in-media-gallery

So this would get all attachments in the media library;

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

Or just get all items of a specific type;

$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[]= $image->guid;
}
share|improve this answer
maybe i can,t understand your answer....but i want a gallery that display all type of media such as images,videos and flash files..... – user1147143 Mar 29 '12 at 11:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.