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