List all posts from custom post type by taxonomy
You could try this way. Create a new page called say ‘All products’ and apply the following template to it. Here is the code for that should be used in your template, just above the while loop. $type=”products”; $args=array( ‘post_type’ => $type, ‘post_status’ => ‘publish’, ‘posts_per_page’ => -1, ‘caller_get_posts’=> 1 query_posts($args); A complete sample template … Read more