Guest User

Untitled

a guest
May 30th, 2017
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. <?php
  2. /*
  3. Template Name: press
  4. */
  5. ?>
  6. <?php get_header(); ?>
  7.  
  8. <section id="content">
  9. <div class="container">
  10.  
  11. <div class="single_left" style="margin-top: 140px">
  12.  
  13. <div id="posts_cont">
  14.  
  15. <?php the_content(); ?>
  16.  
  17. <?php
  18.  
  19. // check if the repeater field has rows of data
  20. if( have_rows('press_repeater') ):?>
  21.  
  22. <?php while ( have_rows('press_repeater') ) : the_row(); ?>
  23.  
  24. <div class="home_small_box home_small_box1 ">
  25. <div><a href="<?php the_sub_field('pr_image'); ?>"><img src="<?php the_sub_field('pr_image'); ?>"> </a></div>
  26. <div class="sb_title"><?php the_sub_field('pr_title'); ?></div>
  27. </div>
  28.  
  29. <?php endwhile; else : ?>
  30.  
  31.  
  32. <div class="clear"></div>
  33.  
  34. </div><!--//posts_cont-->
  35.  
  36.  
  37.  
  38. <?php wp_reset_query(); ?>
  39.  
  40. </div><!--//single_left-->
  41.  
  42.  
  43. <div class="clear"></div>
  44.  
  45. </div><!--//container-->
  46. </section><!--//content-->
  47.  
  48. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment