-
Notifications
You must be signed in to change notification settings - Fork 1
/
single-faculty.php
94 lines (84 loc) · 2.93 KB
/
single-faculty.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
<?php
/**
* The Template for displaying all single posts
*/
get_header();
$education = get_cmb_value( "faculty_education" );
$courses = get_cmb_value( "faculty_courses" );
?>
<div id="primary" class="faculty wrap group" role="main">
<?php
if ( have_posts() ) :
while ( have_posts() ) : the_post();
edit_post_link( __( 'Edit', 'textdomain' ), '<p>', '</p>', null, 'btn btn-primary btn-edit-post-link' );
?>
<div class="quarter">
<div class="tab-nav">
<button class="back-to-faculty-list">« Back to Directory</button>
<ul>
<li class="basic">Basic Information</li>
<?php do_faculty_tab_nav( "Awards & Honors", "awards" ) ?>
<?php do_faculty_tab_nav( "Publications", "publications" ) ?>
<?php do_faculty_tab_nav( "Areas of Interest", "areas" ) ?>
<?php do_faculty_tab_nav( "Professional Affiliations", "affiliations" ) ?>
<?php do_faculty_tab_nav( "Presentations", "presentations" ) ?>
<?php do_faculty_tab_nav( "Pedagogy", "pedagogy" ) ?>
<?php do_faculty_tab_nav( "Production Credits", "credits" ) ?>
<?php do_faculty_tab_nav( "Professional Experience", "experience" ) ?>
</ul>
</div>
</div><!-- #content -->
<div class="quarter right">
<div class="faculty-info">
<?php the_post_thumbnail() ?>
<h2><?php the_title(); ?></h2>
<p class="faculty-title"><?php print get_cmb_value( "faculty_title" ); ?></p>
<p class="faculty-contact">
<a href="mailto:<?php print get_cmb_value( "faculty_email" ); ?>"><?php print get_cmb_value( "faculty_email" ); ?></a><br>
<?php print get_cmb_value( "faculty_phone" ); ?><br>
Office: <?php print get_cmb_value( "faculty_office" ); ?>
<?php
if ( !empty( get_cmb_value( "faculty_website" ) ) ) {
print "<br><a href='" . get_cmb_value( "faculty_website" ) . "' target='_blank'>Website</a>";
}
?>
</p>
</div>
</div>
<div class="half tab-container">
<div class="tab-content basic first">
<h1>Basic Information</h1>
<?php
if ( !empty( $education ) ) {
?>
<h3>Education</h3>
<?php
print wpautop( $education );
}
?>
<?php
if ( !empty( $courses ) ) {
?>
<h3>Courses Taught</h3>
<?php
print wpautop( $courses );
}
?>
</div>
<?php do_faculty_tab_content( "Awards & Honors", "awards" ); ?>
<?php do_faculty_tab_content( "Publications", "publications" ); ?>
<?php do_faculty_tab_content( "Areas of Interest", "areas" ); ?>
<?php do_faculty_tab_content( "Professional/Scholarly Affiliations", "affiliations" ) ?>
<?php do_faculty_tab_content( "Presentations", "presentations" ) ?>
<?php do_faculty_tab_content( "Pedagogy", "pedagogy" ) ?>
<?php do_faculty_tab_content( "Production/Performance Credits", "credits" ) ?>
<?php do_faculty_tab_content( "Professional Experience", "experience" ) ?>
</div>
<?php
endwhile;
endif;
?>
</div><!-- #primary -->
<?php
get_footer();
?>