1) My site has posts, and 2 custom post types (news & essays)
2) They all share normal categories like sports & health (no custom taxanomy involved)
3) Using the generic category.php template, how do I make it so this template handles all categories while displaying all content falling under it regardless of content post type.
Or simply, I would like the generic category.php template to handle all category displays but should include custom post types as well.
This may be a stupid question but have returned to WordPress after a long hiatus and am finding the default wordpress themes hard to understand to do this. Just confused and frustrated right now.
Please help
6 s
Take a look at the query_posts() function – your amigo for altering the main/default query. You want to call global $wp_query
beforehand to alter the original query instead of replacing it.
Something like this should do the trick for you. Put the first four lines in your category.php
right before the main loop begins:
// Modify the default loop, include custom post types
global $wp_query;
$args = array_merge( $wp_query->query, array( 'post_type' => 'any' ) );
query_posts( $args );
// The beginning of the loop looks like this:
while ( have_posts() ) : the_post();
If you want to be more selective in displaying your post types you can provide an array with the desired post types instead of generic 'post_type'=>'any'
:
$args = array_merge( $wp_query->query, array( 'post_type' => array('post','news','essays') ) );
And welcome back to the WordPress universe and WPSE community.
I’m sure the frustration will be gone soon 😉