Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php if( get_row_layout() == 'image-fullwidth' ): ?>
- <div class="image-fullwidth">
- <div class="container">
- <?php $title = get_sub_field('title'); ?>
- <?php
- if( have_rows('columns') ):
- while( have_rows('columns') ): the_row(); ?>
- <?php
- $content = get_sub_field( 'content' );
- //$columns = get_sub_field('columns');
- $columns = the_row('columns');
- $count = count(get_sub_field( 'content' ));
- ?>
- <?php
- if ( $count >= 1 ) { ?>
- <div class="image-fullwidth__title"><?php echo $title; ?></div>
- <div class="grid2">
- <?php foreach ($columns as $item) { ?>
- <?php echo '<div class="formatted">' . $content . '</div>' .
- '<div class="formatted">' . $item . '</div>'; ?>
- </div>
- <?php } ?>
- <?php } else { ?>
- <div class="image-fullwidth__title text-center"><?php echo $title; ?></div>
- <div class="text-center">
- <?php echo $content; ?>
- </div>
- <?php } ?>
- <?php endwhile; ?>
- </div> <!-- container -->
- <?php endif; ?>
- </div> <!-- image-fullwidth -->
Advertisement
Add Comment
Please, Sign In to add comment