Advertisement
alchymyth

next/prev template

Nov 28th, 2012
354
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.26 KB | None | 0 0
  1. <div id="blogposts">
  2.                
  3.                         <?php
  4.                         $catquery = new WP_Query( 'cat=1&posts_per_page=6&paged='.get_query_var('paged') );
  5.                         while($catquery->have_posts()) : $catquery->the_post();
  6.                     ?>
  7.                         <ul>
  8.                             <div id="post" style="max-width:400px;height:410px;border:solid thin red;   float:left;margin: 70px 30px 35px;">
  9.                             <p style="font-weight: bolder;"><?php the_time(get_option('date_format')); ?></p><h3 style="max-width: 100%; max-height: 12%; overflow: hidden;" ><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
  10.                             <?php the_post_thumbnail(array(350,250)); // Crop 300 by 200 px image?>
  11.                             <div id="para" style="width=350 height=233"><p style="margin: 4px 15px 9px 17px; max-width: 90%; max-height: 64px; overflow: hidden;"><?php the_excerpt(); ?><?php do_action( 'addthis_widget' ); ?></p>
  12.                            
  13.                            
  14.                             </div>
  15.                         </ul>
  16.                         <?php endwhile; ?>
  17.                    
  18.                 </div>
  19.  
  20.                 <div class="clear"></div>  
  21. <div class="navigation">
  22. <div class="alignleft"><?php previous_posts_link('&laquo; Previous Entries',$catquery->max_num_pages) ?></div>
  23. <div class="alignright"><?php next_posts_link('Next Entries &raquo;',$catquery->max_num_pages) ?></div>
  24. </div>
  25.                        
  26. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement