Display posts the match taxonomy term linked from wp_list_categoies?
Steve, you’ve asked a couple of questions which I had a look at, and I came to the conclusion that your loop is causing all of your headaches. My loop to display ALL the posts is: $args = array( ‘post_type’ => ‘design_asset’, ‘posts_per_page’ => 100, ‘orderby’ => ‘title’, ‘order’ => ‘ASC’ ); $loop = new … Read more