Get_referrer_category in PHP code widget
-
Hello
My wordpress uses categories and sub-categories, e.g.
Cat 1
– Sub-Cat 1of1
– Sub-Cat 2of1
Cat 2
– Sub-Cat 1of2
– Sub-Cat 2of2When I add categories to posts, I generally assign a sub-category.
When I am on a single post page, I want to use smarter navigation in two ways:
1) Have posts navigate only through posts from the referring category, including all sub-categories – works fine.
2) Have a list of all posts in the referring category in the side bar – only partially working.In order to achieve (2) I have entered the code below in a PHP Code Widget. For some reason it only works if the referring category is a sub-category, not a category.
<ul> <?php $referrer_cat = get_referrer_category(); $referrer_cat_id = ( is_object( $referrer_cat ) ) ? $referrer_cat->term_id : false; $recentPosts = new WP_Query(); $recentPosts->query('cat='.$referrer_cat_id); ?> <?php while ($recentPosts->have_posts()) : $recentPosts->the_post(); ?> <li><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></li> <?php endwhile; ?> </ul>
Any suggestions on how to fix this would be greatly appreciated!
- The topic ‘Get_referrer_category in PHP code widget’ is closed to new replies.