Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. <?php if ($comfy['fc'] == true) : ?>
  2. <!-- first the left column-->
  3.  
  4.  
  5. <div id="leftcolumn"> <!-- MAKE THIS AS WIDE AS THE MAIN CONTENT AREA -->
  6.  
  7. <div class="cat-widget" id="thecontainmentzone">
  8.  
  9. <div class="container">
  10.  
  11. <?php $getposts = new WP_query(); $getposts->query('showposts=20'); ?>
  12. <?php global $wp_query; $wp_query->in_the_loop = true; ?>
  13. <?php while ($getposts->have_posts()) : $getposts->the_post(); ?>
  14.  
  15. <div class="cpost"> <!-- FLOAT THIS LEFT-->
  16.  
  17. <div class="thumb"><?php get_the_image( array( 'custom_key' => array( 'Thumbnail', 'thumbnail' ), 'default_size' => 'thumbnail' ) ); ?></div>
  18. <div class="info">
  19.  
  20. <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" class="dark_perm"><?php the_title(); ?></a>
  21. <p><?php the_excerpt(); ?> </p>
  22.  
  23. <span class="ex">
  24. <a href="<?php the_permalink(); ?>" class="cont"><?php print CONTINUE_TEXT; ?></a>
  25. <a href="<?php the_permalink(); ?>#comments" class="comm"><?php comments_number(NO_COMMENTS,ONE_COMMENT,MORE_COMMENTS); ?></a>
  26. </span><div class="clear"></div>
  27.  
  28. </div><div class="clear"></div>
  29. </div>
  30. <?php endwhile; ?>
  31.  
  32.  
  33. </div>
  34.  
  35. </div>
  36. </div>
  37.  
  38. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement