>>Would some WP PHP expert please explain how to use these navigation tags? – That disqualifies a lot of people, including me, who are no php experts. I will hazard an answer, though ??
The following, from “START” to “END”, in index.php is what is fondly called “the loop”:
<?php if ($posts) { foreach ($posts as $post)"START" { start_wp(); ?>
<?php the_date('','<h2>','</h2>'); ?>
<div class="post">
<h3 class="storytitle" id="post-<?php the_ID(); ?>">" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></h3>
<div class="meta">Filed under: <?php the_category() ?> — <?php the_author() ?> @ <?php the_time() ?> <?php edit_post_link(); ?></div>
<div class="storycontent">
<?php the_content(); ?>
</div>
<div class="feedback">
<?php link_pages('
Pages: ', '
', 'number'); ?>
<?php comments_popup_link('Comments (0)', 'Comments (1)', 'Comments (%)'); ?>
</div>
<!--
<?php trackback_rdf(); ?>
-->
<?php include(ABSPATH . 'wp-comments.php'); ?>
</div>
<?php } }"END" else { // end foreach, end if any posts ?>
If wanted to display reverse $#$
forward on the index page, I would use
<?php posts_nav_link('$#$', 'reverse', 'forward'); ?>
just before the </div>
on the second last line of the code I have posted above(which is taken from the index.php file).