Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Global Tax&CPT Query

// WP_Query arguments
$args = array(
	'post_type'              => array( 'working-papers', ' rivista' ),
	'nopaging'               => false,
	'paged'                  => '$paged',
	'posts_per_page'         => '5',
	'posts_per_archive_page' => '5',
	'ignore_sticky_posts'    => false,
	'order'                  => 'DESC',
	'orderby'                => 'date',
	'tax_query'              => array(
		array(
			'taxonomy'         => 'autore',
			'terms'            => 'none',
			'field'            => 'slug',
			'operator'         => 'NOT IN',
		),
	),
);

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