Wp Query Get By Taxonomy

[Solved] Wp Query Get By Taxonomy | Php Frameworks Drupal - Code Explorer | yomemimo.com
Question : Simple WP_Query Taxonomy Query

Answered by : elegant-eland-mr3deoupvuzu

$args = array(	'post_type' => 'post',	'tax_query' => array(	array(	'taxonomy' => 'people',	'field' => 'slug',	'terms' => 'bob',	),	),
);
$query = new WP_Query( $args );

Source : https://developer.wordpress.org/reference/classes/wp_query/#taxonomy-parameters | Last Update : Wed, 21 Sep 22

Answers related to wp query get by taxonomy

Code Explorer Popular Question For Php Frameworks Drupal