Advertisement
chubbyninja

Untitled

Jun 4th, 2014
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2. $boxes = $list = '';
  3.  
  4. if( get_field('treatments_featured') )
  5. {
  6.     $boxes .= '<div class="fivecol">
  7.         <div class="treatimg">' . the_post_thumbnail('medium'). '</div><!--Closing treatimg-->
  8.         <span class="treattitle">' . the_title(). '</span>
  9.     </div><!--CLosing fivecol-->';
  10. } else {
  11.     $list .= '<li>' . the_title() .'</li>';
  12. }
  13.  
  14. wp_reset_query();
  15. ?>
  16.  
  17. <div class="treatment">
  18. <?=$boxes?>
  19. </div><!--Closing treatment-->
  20.  
  21. <ul>
  22. <?=$list?>
  23. </ul>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement