• Resolved m3fs

    (@m3fs)


    Hello. I think my problem is fairy simple but for the life of me I can’t figure out how to get what I want. OK, here goes.

    For my front page, I am showing 10 posts only thinking that when I get to 11 posts the software will create a “page 2” or something. When I select “archive/month” it still only shows 10 posts. What is happening to the posts once they drift past the “Blog pages show at most” value and how can my readers view past posts?

    Thanks!

Viewing 6 replies - 1 through 6 (of 6 total)
  • If you will post a link to your site and the name of your theme, someone might be able to help.

    Thread Starter m3fs

    (@m3fs)

    Sorry!

    https://www.ereadthis.com

    The name of the theme is Imprezza

    Thanks!

    Your theme has no navigation link code (at least in index.php, and probably not in archive.php). At line 35 in index.php, after the line that has ‘endwhile;’, paste this:

    <div class="navigation">
       <div class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?></div>
       <div class="alignright"><?php previous_posts_link('Newer Entries &raquo;') ?></div>
    </div>

    Then at the end of style.css, paste this:

    .alignright {
    	float: right;
    	}
    
    .alignleft {
    	float: left;
    	}
    Thread Starter m3fs

    (@m3fs)

    worked great! Thank you so much!

    You are welcome! Please mark this topic ‘Resolved’.

    Thread Starter m3fs

    (@m3fs)

    doh, sorry I didn’t have email reminders on. Thanks for doing that as well =/

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Show all posts’ is closed to new replies.