Customizing Post Sort Order Using the Category Posts Widget


/ Published in: PHP
Save to your folder(s)

Edit widget or display current category in sidebar.php


Copy this code and paste it in your HTML
  1. // Get array of post info.
  2. $cat_posts = new WP_Query("showposts=" . $instance["num"] . "&cat=" . $instance["cat"] . '&orderby=date&order=asc');
  3.  
  4. The Category Posts Widget is very good for showing a certain # of posts in a particular category using a widget that displays on every page. However, if you only want to show the posts for the current category in the sidebar, then add this code to your sidebar.php file:
  5.  
  6. <?php
  7. $sidebar_related_query = new WP_Query('cat=' . $sidebar_cat_id . '&showposts=5&offset=0&orderby=post_date&order=desc');
  8. while ($sidebar_related_query->have_posts()) : $sidebar_related_query->the_post();
  9. $do_not_duplicate = $post->ID;
  10. ?>
  11.  
  12. <div id=”post-<?php the_ID(); ?>">
  13. <a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
  14. </div>
  15.  
  16. <?php endwhile; ?>

URL: http://www.moongoosedesigns.com/customizing-post-sort-order-using-the-category-posts-widget/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.