Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

findimages

// WP_Query arguments
$args = array(
	'post_type'              => array( 'attachment' ),
	'post_status'            => array( 'inherit' ),
	'meta_query'             => array(
		'relation' => 'AND',
		array(
			'key'     => 'has_processed',
			'value'   => '1',
			'compare' => '!=',
			'type'    => 'BINARY',
		),
	),
);

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