Tagged Questions
0
votes
2answers
255 views
How do I Use Multiple Loops with WP_Query?
Hi I am trying to add post from a certain taxonomy term to a cpt loop. The code below is the code I am using.
<?php // Create empty array to store post ids in
$excludes = array();
...
0
votes
1answer
158 views
CPT archive page - show one post from each taxonomy term
Basic loop question:
I have a custom post type with a custom taxonomy and 3 terms.
On the archive page (archive-custom_post_type.php), I would like to display one post from each taxonomy term.
Is ...
1
vote
2answers
1k views
List all posts in Custom Post Type but group dynamically by Custom Taxonomies
I have a custom post type named "Resources" which has a Taxonomy named "Types."
I have it manually pulling each term which isn't the most elegant solution and every time there is a new term added, I ...
2
votes
2answers
523 views
How to list custom post types?
Here's what I'd like to do:
a) Create a custom post type and write panel for a menu item called "My Stuff."
b) "My Stuff" will behave like a category -- but the content will not appear in the main ...
