Getting the post navigation to work in Wordpress
This is the way I used the code for AREA203’s website, and it worked well.
<?php
$paged = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1;
query_posts(“cat=4&paged=$paged&showposts=3″);
if (have_posts()) : while (have_posts()) : the_post();
the_content();
?>
<?php endwhile; ?>
<div id=”postNav”>
<span class=”previousNav”><?php previous_posts_link(); ?></span>
<span class=”moreNav”><?php next_posts_link(); ?></span>
</div>
<?php else : ?>
<?php endif; ?>
A quick look at WP-Print, a WordPress plugin for printer friendly printing
I struggled to find a solution to creating a printer friendly version of a paginated page (or post). I successfully created a dynamic page called “printer friendly” and used a series of variables to dynamically pull from an existing post or page. That part worked. The problem was getting the full text of the article [...]
Posted in Scenarios, WordpressSnippet: A quick and easy second or side loop for Wordpress
Resources, related or just simply helpful:
http://codex.wordpress.org/Template_Tags/query_posts
http://codex.wordpress.org/Template_Tags/get_posts
Use custom fields in Wordpress with posts
<?php // if there are custom fields, echo them here in the looped content and build our related leftbox
[...]