WordPress的.获取没有特色图片的帖子

Par*_*ion 4 wordpress

好吧,我们只能通过使用来过滤带有特色图像的帖子

'meta_query' => array(
    array( 'key' => '_thumbnail_id'), 
)
Run Code Online (Sandbox Code Playgroud)

在WP_Query()中

但是如何才能获得没有特色图片的帖子?

Tan*_*cia 9

试试这个?

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