How to fetch all WordPress posts with featured image?

Giljed Jowes picture Giljed Jowes · Aug 9, 2010 · Viewed 10.3k times · Source

In WordPress 3 there is Featured Image functionality. How do i fetch all posts that have a featured image with them? Here is my current custom loop:

$loop = new WP_Query( array( 'posts_per_page' => 15 ) );

Answer

John P Bloch picture John P Bloch · Aug 9, 2010

This should work:

$loop = new WP_Query( array( 'posts_per_page' => -1, 'meta_key' => '_thumbnail_id' ) );

I haven't tested this, though. Also, this will probably fetch all posts and pages. Use 'post_type' => 'post' to limit it to blog posts.