How To Get WordPress Post By Current Taxonomy

How can I get all posts which was filtered by current taxonomy

You can use WP_Query class

$args = array(
'post_type' => 'post',
'tax_query' => array(
    'relation' => 'AND',
    array(
        'taxonomy' => 'tax',
        'field'    => 'ID',
        'terms'    => array($term->term_id)
         )
    ),
 )
0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments