next_posts_link and previous_posts_link problem
When using custom post types I got around this problem by using the following code. Of course you will need to put in the HTML for how you want it to display on your site. <?php $temp = $wp_query; $wp_query= null; $wp_query = new WP_Query(); $wp_query->query(”); // Enter you query here ?> <?php while ($wp_query->have_posts()) … Read more