Problem with Next and Previous Links
-
i am using a modified version of the grid focus theme.. here is my index.php code. please help me.. I am not able to display the prev posts and next posts on the search pages etc.. a similar code is also there in home.php
<?php get_header(); ?> <div id="mid" class="fix"> <div id="mainCol" class="fix"> <?php if (have_posts()) : ?> <?php $top_query = new WP_Query('showposts=2');?> <?php while($top_query->have_posts()) : $top_query->the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <div class="postMeta"><span class="date"><?php the_time('M j, Y') ?></span><span class="comments"><?php comments_popup_link('0', '1', '%'); ?></span></div> <h2>" title="<?php the_title(); ?>"><?php the_title() ?></h2> <div class="entry"> <p><?php the_content('Read more...'); ?></p> </div> </div> <?php endwhile; ?> <?php else : ?> <div class="post"> <div class="postMeta"><span class="date">No Matches</span></div> <h2>No matching results</h2> <div class="entry"> <p>You seem to have found a mis-linked page or search query with no associated results. Please trying your search again. If you feel that you should be staring at something a little more concrete, feel free to email the author of this site or browse the archives.</p> </div> </div> <?php endif; ?> <div id="more_reading"> <p>Continue <?php posts_nav_link(' ','<img src="https://dailyapps.net/wp-content/themes/grid_focus_public/images/arrow_prev.gif" alt="Previous page"/>','<img src="https://dailyapps.net/wp-content/themes/grid_focus_public/images/arrow_next.gif" alt="Next page" />') ?></p> </div> </div> <?php include (TEMPLATEPATH . '/sidebar.php'); ?> </div> <?php get_footer(); ?>
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Problem with Next and Previous Links’ is closed to new replies.