Hi All,
I have a simple list of Recent Posts as permalink in the sidebar of my Blog page. They look fine in my recent Blog page, BUT when I go to second page of my blog, they get change!! By other word , these recent post permalinks are always similar with the posts on that blog page!!! How can I fix that issue? Any idea?
Here is my Code for recent post permalink :
<?php
$temp = $wp_query;
$wp_query= null;
$wp_query = new WP_Query();
$wp_query->query('showposts=5'.'&paged='.$paged);
?>
<?php while ($wp_query->have_posts()) : $wp_query->the_post(); ?>
<?php endwhile; ?>