I have a static front page on my WP portfolio and have tried using the codex but can’t seem to figure out my loops. Here’s what my first query looks like:
<?php query_posts('category_name=portfolio&posts_per_page=4') ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
Any idea what it would look like to paginate it on a static front page?
Without any plugin you can use this (just a simple example)
Visit Codex to know more about formating links.
Alternatively you can use plugins like pagenavi (I use this) or infinite scroll. There is also a nice tutorial if you manually want to build your infinite scroll.
You can use this plugin: wp page navi
it will add page navigation automatically if you have more posts in this query.