Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

author tax count

// WP_Query arguments
$args = array(
	'post_type'              => array( 'job_listing' ),
	'post_status'            => array( 'published' ),
	'author'                 => '$meta',
);

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