-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtemplate-testimonials.php
42 lines (40 loc) · 998 Bytes
/
template-testimonials.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
/* Template Name: Testimonials Page */
get_header();
the_post();
?>
<section class="main-content">
<header class="page-header">
<div class="container">
<?php get_template_part( 'inc/partials/entry/page', 'header' ); ?>
</div>
</header>
<div class="container">
<div class="columns">
<div class="column is-8">
<section class="entry-page-content padding-top-xl">
<div class="text-format content body-big">
<?php
if ( have_rows( 'testimonials' ) ) :
while ( have_rows( 'testimonials' ) ) :
the_row();
?>
<?php
// Group subfields
$testimonial = get_sub_field( 'testimonial' );
$citation = get_sub_field( 'citation' );
?>
<blockquote class="margin-bottom-big">
<?php echo $testimonial; ?>
<cite><?php echo $citation; ?></cite>
</blockquote>
<?php endwhile; ?>
<?php endif; ?>
<?php the_content(); ?>
</div>
</section>
</div>
</div>
</div>
</section>
<?php get_footer(); ?>