dlovas
10/7/2017 - 2:32 PM

tax_query - WordPress

tax_query

$args = array( 
	'tax_query' => array(
		array(
			'taxonomy' => 'category',
			'field'    => 'slug',
			'terms'    => 'editorial',
		),
	),
	'posts_per_page' => -1,
);
$query = new WP_Query( $args );