Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Feature

// WP_Query arguments
$args = array(
	'post_type'              => array( 'feature' ),
	'post_status'            => array( 'publish' ),
	'nopaging'               => false,
	'order'                  => 'ASC',
	'orderby'                => 'date',
	'tax_query'              => array(
		'relation' => 'AND',
		array(
			'taxonomy'         => 'docs_meta_ultimate_gutenberg',
			'field'            => 'term_id',
			'operator'         => 'AND',
		),
		array(
			'taxonomy'         => 'post_tag',
			'terms'            => 'giant',
			'field'            => 'slug',
		),
	),
);

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