Advertisement
Viper007Bond

Untitled

Nov 13th, 2011
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. $all_the_posts = get_posts( $args );
  2.  
  3. $count = 0;
  4.  
  5. foreach ( $all_the_posts as $post ) {
  6.     $count++;
  7.  
  8.     // Output a post
  9.  
  10.     if ( $count % 6 ) {
  11.         // This happens after every 6th post
  12.     }
  13. }
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement