-
Notifications
You must be signed in to change notification settings - Fork 1
/
search-generic.php
43 lines (37 loc) · 1.07 KB
/
search-generic.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
<div id="primary" class="wrap group content-narrow">
<h1>Search Results: <span><?php print $_REQUEST["s"]; ?></span></h1>
<div class="search-results-list">
<?php
while ( have_posts() ) : the_post();
switch ( $post->post_type ) {
case 'faculty':
?>
<div class="faculty-entry">
<?php the_post_thumbnail(); ?>
<div class="info">
<a href="<?php the_permalink(); ?>" class="btn">View Profile »</a>
<h4><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h4>
<p class="faculty-title"><?php print get_cmb_value( "faculty_title" ); ?></p>
<a href="mailto:<?php print get_cmb_value( "faculty_email" ); ?>"><?php print get_cmb_value( "faculty_email" ); ?></a>
</div>
</div>
<?php
break;
default:
?>
<div class="search-result">
<h3><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h3>
<?php the_excerpt(); ?>
</div>
<?php
break;
}
?>
<?php
endwhile;
?>
</div>
<div class="pagination">
<?php print paginate_links(); ?>
</div>
</div><!-- #primary -->