Show category post titles in sidebar
-
Ok I’m fairly new to modifying Word Press so bear with me. What I would like to do is modify the sidebar so that it will only show POSTS from the CURRENT CATEGORY only.
I currently have 2 categories and would like it so that when you are viewing one of the categories it will show all the post titles from the current category you are viewing only (in the sidebar).
Please let me know if you can hlep. Currently I have only got it to show all the post titles from category 3 only by using the code below:
<?php $temp_query = $wp_query; ?>
<?php query_posts(‘cat=3&showposts=50’); ?>
<?php while (have_posts()) : the_post(); ?>
<p>“><?php the_title(); ?></p>
<?php endwhile; ?>
<?php $wp_query = $temp_query; ?>Website is: https://www.happyskateboarding.com/sklog/?cat=3
Thanks in advance,
- The topic ‘Show category post titles in sidebar’ is closed to new replies.