简体   繁体   中英

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()

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 );

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM