Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

draft wo img ewe

// WP_Query arguments
$args = array(
	'post_type'              => array( 'product' ),
	'post_status'            => array( 'draft' ),
	'meta_query'             => array(
		array(
			'key'     => '_thumbnail_id',
			'compare' => 'NOT EXISTS',
		),
	),
);

// The Query
$query = new WP_Query( $args );