WordPress. Get posts without featured image only

I know we can filter posts with a featured image by using

'meta_query' => array(
    array( 'key' => '_thumbnail_id'), 
)

in WP_Query()

Read More

But how do I get posts without featured image?

Related posts

1 comment

  1. Try this?

    $args = array(
      'meta_query' => array(
         array(
           'key' => '_thumbnail_id',
           'value' => '?',
           'compare' => 'NOT EXISTS'
         )
      ),
    );
    $new_query = new WP_Query( $args );
    

Comments are closed.