質問

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

Thanks

役に立ちましたか?

解決

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' ) );
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top