Skip to content

Instantly share code, notes, and snippets.

@crstn
Created September 28, 2012 10:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save crstn/3799044 to your computer and use it in GitHub Desktop.
Save crstn/3799044 to your computer and use it in GitHub Desktop.
Blognavigation zwischen Einträgen
<div class="post" id="post-<?php the_ID(); ?>">
<div id="prev-post"><?php previous_post_link('%link', '&laquo;') ?></div>
<div id="next-post"><?php next_post_link('%link', '&raquo;') ?></div>
...
</div>
div#prev-post, div#next-post {
font-size: 50px;
}
div#prev-post{
position: fixed;
top: 222px;
left: 20px;
}
div#next-post{
position: fixed;
top: 222px;
right: 20px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment