Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /*
- Template Name: press
- */
- ?>
- <?php get_header(); ?>
- <section id="content">
- <div class="container">
- <div class="single_left" style="margin-top: 140px">
- <div id="posts_cont">
- <?php the_content(); ?>
- <?php
- // check if the repeater field has rows of data
- if( have_rows('press_repeater') ):?>
- <?php while ( have_rows('press_repeater') ) : the_row(); ?>
- <div class="home_small_box home_small_box1 ">
- <div><a href="<?php the_sub_field('pr_image'); ?>"><img src="<?php the_sub_field('pr_image'); ?>"> </a></div>
- <div class="sb_title"><?php the_sub_field('pr_title'); ?></div>
- </div>
- <?php endwhile; else : ?>
- <div class="clear"></div>
- </div><!--//posts_cont-->
- <?php wp_reset_query(); ?>
- </div><!--//single_left-->
- <div class="clear"></div>
- </div><!--//container-->
- </section><!--//content-->
- <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment