Nasir Zia
Nasir Zia

Reputation: 574

Wordpress, all pages with thumbnail

Can we get a list (or ID) of only those pages of a wordpress website for which we have set a Featured Image?

Thanks

Upvotes: 1

Views: 51

Answers (1)

MrHunter
MrHunter

Reputation: 1900

This will grab all pages with a featured image and store it in a variable.

$loop = new WP_Query( array( 'post_type' => 'page', 'meta_key' => '_thumbnail_id' ) );

Upvotes: 1

Related Questions