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
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: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'
:And welcome back to the WordPress universe and WPSE community.
I’m sure the frustration will be gone soon 😉
At first I used Maugly’s solution but then i found this one in wordpress codex :
Hope it will help someone .. maybe it’s not the cleanest but a little bit cleaner than Maugly’s solution ..
⺠Here is my version of the @Kower’s suggestion. Solves a couple of problems in admin.
I wanted to add to this, in reference to @tivnet’s answer. (I would have liked to have left a comment but my rep is not high enough)
I found the solutions worked, however they presumably had the unintended consequence of affecting the admin area as well, meaning that visiting the posts in the wp-admin (wp-admin/edit.php) would also show all pages and all custom post types in the generic post list. Confusing for other users perhaps? However, adding:
within the if() statement appears to solve this issue while keeping the pre_get_posts amend on the front end.
To include a custom post type in the regular loop (ie. posts page) just add the following code to index.php before
if ( have_posts() ) :
then modify the following two lines:
if ( have_posts() ) :
change it toif ( $new_post_loop -> have_posts() ) :
and
while ( have_posts() ) : the_post();
towhile ( $new_post_loop -> have_posts() ) : $new_post_loop -> the_post();
This solution avoids the problem of having the custom post type listed in the all posts screen on the backend, which using add_action(‘pre_get_posts’) produces 😉