Advertisement
Guest User

A

a guest
Sep 23rd, 2011
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. <?php query_posts('showposts=5'); ?>
  2. <?php $posts = get_posts('numberposts=6&offset=0'); foreach ($posts as $post) : start_wp(); ?>
  3. <?php static $count1 = 0; if ($count1 == "6") { break; } else { ?>
  4.  
  5. <a class="title" href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
  6. <div class="titlemeta">¬ created <?php the_time('M jS') ?> &#64; <?php the_time('g:i A') ?> + filed under <?php the_category(' / ') ?></div>
  7.  
  8. <?php $count1++; } ?>
  9. <?php endforeach; ?>
  10.  
  11. <?php query_posts('showposts=6'); ?>
  12. <?php $posts = get_posts('numberposts=6&offset=6'); foreach ($posts as $post) : start_wp(); ?>
  13. <?php static $count2 = 0; if ($count2 == "6") { break; } else { ?>
  14.  
  15. <a class="title" href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
  16. <div class="titlemeta">¬ created <?php the_time('M jS') ?> &#64; <?php the_time('g:i A') ?> + filed under <?php the_category(' / ') ?></div>
  17.  
  18. <?php $count2++; } ?>
  19. <?php endforeach; ?>
  20.  
  21. <?php posts_nav_link(' &#8212; ', __('&laquo; Newer Posts'), __('Older Posts &raquo;')); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement