Pregunta

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

Thanks

¿Fue útil?

Solución

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' ) );
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top