-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpage-sections-flex.php
executable file
·246 lines (173 loc) · 8.54 KB
/
page-sections-flex.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
<?php
/*
Template Name: sections - Flexible Content
*/
get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php while ( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<section class="landing-page-hero" style="<?php if ( has_post_thumbnail()) {
echo " background-image:url( '";
$thumb_id = get_post_thumbnail_id();
$thumb_url = wp_get_attachment_image_src($thumb_id,'full ', true);
echo $thumb_url[0];
echo "') ";}
?>">
<div class="wrap">
<header class="entry-header <?php if ( get_field('sub-headline') ) { echo "has-sub-headline"; } ?>">
<?php if ( get_field('sub-headline') ) { ?><h2 class="sub-headline"><?php the_field('sub-headline'); ?></h2><?php } ?>
<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
</header>
<!-- .entry-header -->
<div class="entry-content">
<?php the_content(); ?>
<?php
wp_link_pages( array(
'before' => '<div class="page-links">' . __( 'Pages:', 'livewell' ),
'after' => '</div>',
) );
?>
</div>
<!-- .entry-content -->
</div>
<!-- .wrap -->
</section>
<!--.landing-page-hero-->
<?php if( have_rows('sections-flex') ): ?>
<?php while( have_rows('sections-flex') ): the_row(); ?>
<?php
//CONTENT-BLOCK LAYOUT
if( get_row_layout() == 'content-blocks'): ?>
<section <?php if( get_sub_field( 'section_id') ) { ?> id="
<?php the_sub_field('section_id'); ?>"
<?php } ?> class="row
<?php
//adds the class for the selection type
$value = get_sub_field('columns');
echo "cols-" . $value;
//adds class for background-attachment:fixed
if( get_sub_field('fixed') ) { echo " fixed"; }
//adds class for box
if( get_sub_field('boxed_content')) { echo " boxed"; }
//adds class for column layout
if( get_sub_field( '2_column_layout' )) { echo " "; the_sub_field('2_column_layout'); }
if( get_sub_field( '3_column_layout' )) { echo " "; the_sub_field('3_column_layout'); }
?>" style="
<?php if (get_sub_field('background_image')) { ?> background-image:url('<?php the_sub_field('background_image'); ?>'); <?php } ?>
<?php if (get_sub_field('background_color')) { ?>background-color:<?php the_sub_field('background_color'); } ?>">
<div class="wrap above-fixed">
<?php if( get_sub_field('section_title') ): ?>
<h2 class="section-title"><?php the_sub_field('section_title'); ?></h2>
<?php endif; ?>
<div class="sub-section0<?php
//adds class for box
$selected = get_sub_field('boxed_content');
if( in_array('col-1', $selected) ) {
echo " boxed ";
} ?>">
<?php the_sub_field('column_1'); ?>
</div>
<!--.sub-section0-->
<?php if ( get_sub_field ('columns') !== 'one') { ?>
<div class="sub-section1<?php
//adds class for box
$selected = get_sub_field('boxed_content');
if( in_array('col-2', $selected) ) {
echo " boxed ";
} ?>">
<?php the_sub_field('column_2'); ?>
</div>
<!--.sub-section1-->
<?php } ?>
<?php if ( get_sub_field ('columns') == 'three') { ?>
<div class="sub-section2<?php
//adds class for box
$selected = get_sub_field('boxed_content');
if( in_array('col-3', $selected) ) {
echo " boxed ";
} ?>">
<?php the_sub_field('column_3'); ?>
</div>
<!--.sub-section2-->
<?php } ?>
</div>
<!--.wrap-->
</section>
<!-- #intro -->
<?php endif; ?>
<?php
//GALLERY LAYOUT
if( get_row_layout() == 'gallery'): ?>
<section <?php if( get_sub_field( 'section_id') ) { ?> id="
<?php the_sub_field('section_id'); ?>"
<?php } ?> class="row gallery" style="<?php if (get_sub_field('background_color')) { ?>background-color:<?php the_sub_field('background_color'); } ?>">
<div class="wrap above-fixed">
<?php if( get_sub_field('title') ): ?>
<h2 class="section-title"><?php the_sub_field('title'); ?></h2>
<?php endif; ?>
<?php
$image_ids = get_sub_field('gallery', false, false);
$shortcode = '[gallery ids="' . implode(',', $image_ids) . '" . captiontag="figcaption"]';
echo do_shortcode( $shortcode );
?>
<div class="description">
<?php the_sub_field('description'); ?>
</div>
<!--.description-->
</div>
<!--.wrap-->
</section>
<!-- #intro -->
<?php endif; ?>
<?php
//BLOCKQUOTE LAYOUT
if( get_row_layout() == 'blockquote'): ?>
<section <?php if( get_sub_field( 'section_id') ) { ?> id="
<?php the_sub_field('section_id'); ?>"
<?php } ?> class="row blockquote" style="<?php if (get_sub_field('background_color')) { ?>background-color:<?php the_sub_field('background_color'); } ?>">
<div class="wrap above-fixed">
<?php if( get_sub_field('title') ): ?>
<h2 class="section-title"><?php the_sub_field('title'); ?></h2>
<?php endif; ?>
<figure class="quote">
<blockquote>
<?php the_sub_field('quote'); ?>
</blockquote>
<figcaption><?php the_sub_field('author'); ?></figcaption>
</figure>
</div>
<!--.wrap-->
</section>
<!-- #intro -->
<?php
//IMAGE LAYOUT
if( get_row_layout() == 'image_row'): ?>
<section <?php if( get_sub_field( 'section_id') ) { ?> id="
<?php the_sub_field('section_id'); ?>"
<?php } ?> class="row image" style="
<?php if (get_sub_field('image')) { ?> background-image:url('<?php the_sub_field('image'); ?>'); <?php } ?><?php if (get_sub_field('background_color')) { ?> background-color:<?php the_sub_field('background_color'); } ?>">
<div class="wrap above-fixed">
<?php if( get_sub_field('title') ): ?>
<h2 class="section-title"><?php the_sub_field('title'); ?></h2>
<?php endif; ?>
</div>
<!--.wrap-->
</section>
<!-- #intro -->
<?php endif; ?>
<?php endif; ?>
<?php endwhile; ?>
<?php endif; ?>
<footer class="entry-footer">
<?php edit_post_link( __( 'Edit', 'livewell' ), '<span class="edit-link">', '</span>' ); ?>
</footer>
<!-- .entry-footer -->
</article>
<!-- #post-## -->
<?php endwhile; ?>
</main>
<!-- #main -->
</div>
<!-- #primary -->
<?php get_footer(); ?>