Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

query productos yemina

// WP_Query arguments
$args = array(
	'post_type'              => array( 'producto-yemina' ),
	'post_status'            => array( 'published' ),
	'tax_query'              => array(
		array(
			'taxonomy'         => 'categoria-yemina-producto',
			'terms'            => 'pastas-cortas',
			'field'            => 'slug',
			'operator'         => 'IN',
		),
	),
);

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