-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpage_program.php
65 lines (56 loc) · 1.78 KB
/
page_program.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
<?php
/**
*
* Template Name: Program Template
*
* @package WordPress
* @subpackage Twenty_Sixteen
* @since Twenty Sixteen 1.0
*/
get_header(); ?>
<!-- header-below -->
<?php get_template_part( 'template-parts/sidebar/header-below' ); ?>
<!-- END header-below -->
<div id="primary" class="content-area">
<div id="wrapper-main" class="wrapper-main">
<div class="breadcrumbs" typeof="BreadcrumbList" vocab="http://schema.org/">
<?php
if ( function_exists( 'bcn_display' ) ) {
bcn_display();
}
?>
</div>
<main id="main" class="site-main" role="main">
<?php
// Start the loop.
while ( have_posts() ) :
the_post();
$post = get_post();
// Include the page content template.
get_template_part( 'template-parts/content', 'page' );
$cc_program_left = htmlspecialchars_decode( get_post_meta( $post->ID, 'cc_program_left', true ) );
$cc_program_right = htmlspecialchars_decode( get_post_meta( $post->ID, 'cc_program_right', true ) );
$cc_program_get_involved = htmlspecialchars_decode( get_post_meta( $post->ID, 'cc_program_get_involved', true ) );
?>
<div class="two-column">
<div class="left-column"><?php print $cc_program_left; ?></div>
<div class="right-column"><?php print $cc_program_right; ?></div>
</div>
<div class="get-involved">
<div><?php print $cc_program_get_involved; ?></div>
</div>
<?php
// End of the loop.
endwhile;
?>
</main><!-- .site-main -->
<?php get_template_part( 'template-parts/sidebar/sidebar','content-bottom' ); ?>
</div>
<div id="wrapper-sidebar" class="wrapper-sidebar">
<?php get_sidebar(); ?>
</div>
</div><!-- .content-area -->
<!-- content-below -->
<?php get_template_part( 'template-parts/sidebar/sidebar','content-below' ); ?>
<!-- END content-below -->
<?php get_footer(); ?>