Things I want would be to show just one blog publish at any given time, both around the top of the page and "nextInch, too, i.e. I'm not going another look at my blog that shows several publish.
To date, I have set "posts per page" to at least one within the dashboard. However, the navigation links pre and post the publish connect to page 2, page 3, etc. Individuals only show one publish already, however I'd prefer individuals links to suggest to anotherOrprior posts' permalinks rather.
Wouldso would I actually do that?
Replace
<div id="nav-above" class="navigation">
<div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', 'twentyten' ) ); ?></div>
<div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'twentyten' ) ); ?></div>
</div>
with
<div id="nav-above" class="navigation">
<div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'twentyten' ) . '</span> %title' ); ?></div>
<div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '→', 'Next post link', 'twentyten' ) . '</span>' ); ?></div>
</div>
The very first block of code you need to get in your loop.php and also the second one originates from single.php.