Revision: 40316
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at January 30, 2011 03:47 by rliverman
Initial Code
<?php $page = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("paged=$page&posts_per_page=5"); ?> <?php $count = 1; // Sets count to 1 on first output post ?> <?php while (have_posts()) : the_post(); ?> <?php if ((!is_paged()) && ($count == 1 || $count == 2)){ // THIS STARTS FULL CONTENT IF IS FIRST POST AND NOT PAGED, THE OR OTHER COUNT ALLOWS FOR SHOWING MORE THAN ONE OF THE FULL CONTENT POSTS BEFORE GOING TO EXCERPTS ?> <?php the_content(); ?> <?php } else { // THIS ends FULL CONTENT and SHOWS FOLLOWING POSTS ELSE ?> <?php the_excerpt(); ?> <?php } $count++; // THIS IS the END of ELSE and sets count one up ?> <?php endwhile; ?> <div class="navigation"> <div class="next-posts"><?php next_posts_link('« Older Entries') ?></div> <div class="prev-posts"><?php previous_posts_link('Newer Entries »') ?></div> </div>
Initial URL
Initial Description
Needed this to have the index.php or main blog page show the full content for the first two posts and then just the excerpt for the rest and still have pagination working.
Initial Title
Multiple Loops and Pagination in Wordpress
Initial Tags
wordpress
Initial Language
PHP