Brandia Document category
// WP_Term_Query arguments $args = array( 'taxonomy' => array( 'brandia_recipe_tag' ), 'name' => array( 'asdasdsadsa' ), 'slug' => array( 'aaaaaaaaa' ), 'hierarchical' => true, ); // The Term Query $brandia_document_parent_query = new WP_Term_Query( $args ); // The Loop if ( ! empty( $brandia_document_parent_query ) && ! is_wp_error( $brandia_document_parent_query ) ) { // do something } else { // no terms found }