Home

Published

- 1 min read

get posts from selected taxonomy

img of get posts from selected taxonomy

The solution for this is noted below

get posts from selected taxonomy

Solution

   $posts_array = get_posts(
    array(
        'posts_per_page' => -1,
        'post_type' => 'fabric_building',
        'tax_query' => array(
            array(
                'taxonomy' => 'fabric_building_types',
                'field' => 'term_id',
                'terms' => $cat->term_id,
            )
        )
    )
);

Try other methods by searching on the site. That is if this doesn’t work