-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsingle-program.php
More file actions
100 lines (90 loc) · 3.36 KB
/
single-program.php
File metadata and controls
100 lines (90 loc) · 3.36 KB
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
<?php
get_header();
while( have_posts() ) {
the_post();
pageBanner(); // Get the PostType Title, Subtitle and Background Image
?>
<div class="container container--narrow page-section">
<div class="metabox metabox--position-up metabox--with-home-link">
<p><a class="metabox__blog-home-link" href="<?php echo get_post_type_archive_link('program'); ?>"><i class="fa fa-home" aria-hidden="true"></i>All Programs</a> <span class="metabox__main"><?php the_title(); ?></span></p>
</div>
<div class="generic-content"><?php the_field('main_body_content'); ?></div>
<?php
// Professors
$relatedProfessors = new WP_Query( array(
'posts_per_page' => -1,
'post_type' => 'professor',
'orderby' => 'title',
'order' => 'ASC',
'meta_query' => array( // note: array-array is required even on single filters
array(
'key' => 'related_programs',
'compare' => 'LIKE',
'value' => '"' . get_the_id() . '"'
)
)
));
if ( $relatedProfessors->have_posts() ) {
echo '<hr class="section-break">';
echo '<h2 class="headline headline--medium">' . get_the_title() . ' Professors</h2>';
echo '<ul class="professor-cards" >';
while( $relatedProfessors->have_posts() ) {
$relatedProfessors->the_post(); ?>
<li class="professor-card__list-item">
<a class="professor-card" href="<?php the_permalink(); ?>">
<img class="professor-card__image" src="<?php the_post_thumbnail_url('professorLandscape'); ?>">
<span class="professor-card__name"><?php the_title(); ?></span>
</a>
</li>
<?php
}
echo '</ul>';
}
wp_reset_postdata();
// Programs
$today = date('Ymd');
$programPageEvents = new WP_Query( array(
'posts_per_page' => 2,
'post_type' => 'event',
'orderby' => 'meta_value_num',
'order' => 'ASC',
'meta_key' => 'event_date',
'meta_query' => array(
array(
'key' => 'event_date',
'compare' => '>=',
'value' => $today,
'type' => 'numeric'
),
array(
'key' => 'related_programs',
'compare' => 'LIKE',
'value' => '"' . get_the_id() . '"'
)
)
));
if ( $programPageEvents->have_posts() ) {
echo '<hr class="section-break">';
echo '<h2 class="headline headline--medium">Upcoming ' . get_the_title() . ' Events</h2>';
while( $programPageEvents->have_posts() ) {
$programPageEvents->the_post();
get_template_part('template-parts/content-event');
}
}
wp_reset_postdata();
$relatedCampuses = get_field('related_campus');
if ($relatedCampuses) {
echo '<hr class="section-break">';
echo '<h2 class="headline headline--medium">' . get_the_title() . ' is Available At These Campuses:</h2>';
echo '<ul class="min-list link-list">';
foreach( $relatedCampuses as $campus ) {
?> <li><a href="<?php echo get_the_permalink($campus); ?>"><?php echo get_the_title($campus) ?></a></li> <?php
}
echo '</ul>';
}
?>
</div>
<?php
}
get_footer();
?>