I know we can filter posts with a featured image by using
'meta_query' => array(
array( 'key' => '_thumbnail_id'),
)
in WP_Query()
But how do I get posts without featured image?
Try this?
$args = array(
'meta_query' => array(
array(
'key' => '_thumbnail_id',
'value' => '?',
'compare' => 'NOT EXISTS'
)
),
);
$new_query = new WP_Query( $args );
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With