-
Notifications
You must be signed in to change notification settings - Fork 3
/
search.php
142 lines (104 loc) · 3.9 KB
/
search.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
<?php
/**
* The template for displaying Search Results pages.
*
* @package MITLibraries-News
* @since Twenty Twelve 1.0
*/
get_header();
get_template_part( 'inc/sub-header' );
$search_query = get_search_query();
?>
<div id="primary" class="content-area">
<main id="main" class="content-main" role="main">
<div class="container">
<div class="row">
<h2 class="search">Search results for <strong><?php echo esc_html( $search_query ); ?></strong></h2>
<?php if ( '' == $post ) { ?>
<?php echo "<p class='search'>" . "Sorry, we didn't find anything matching your search. Please try a different search term." . '</p>' ; ?>
<?php } ?>
<?php
$L = -1;
// $theLength = $count_posts->publish;
while ( have_posts() ) : the_post();
$L++;
?>
<!--//////////// -->
<div id="theBox" class="<?php if ( 0 == $L % 3 ) { echo 'third '; } ?>col-xs-12 col-xs-B-6 col-sm-4 col-md-4 col-lg-4 no-padding-left-mobile">
<div class="hentry flex-item blueTop eventsBox <?php echo esc_attr( check_image() ); ?>"
onClick='location.href="<?php if ( ( '' != get_field( 'external_link' ) ) && 'spotlights' == $post->post_type ) { the_field( 'external_link' );
} else { echo get_post_permalink();} ?>"'>
<?php get_template_part( 'inc/spotlights' ); ?>
<?php
if ( get_field( 'listImg' ) != '' ) { ?>
<img data-original="<?php the_field( 'listImg' ) ?>" width="100%" height="111" class="img-responsive" alt="<?php the_title(); ?>"/>
<?php } ?>
<?php if ( 'spotlights' == $post->post_type ) { ?>
<h2 class="entry-title title-post spotlights">
<a href="<?php the_field( 'external_link' ); ?>"><?php the_title();?></a>
</h2>
<?php } else { ?>
<h2 class="entry-title title-post">
<a href="<?php the_permalink(); ?>"><?php the_title();?></a>
</h2>
<?php } ?>
<?php get_template_part( 'inc/events' ); ?>
<?php get_template_part( 'inc/entry' ); ?>
<!--final **** else-->
<?php { ?>
<!--EVENT -->
<?php } ?>
<div class="category-post <?php if ( get_post_type( get_the_ID() ) == 'bibliotech' ) { echo 'Bibliotech';} ?>">
<?php
if ( get_post_type( get_the_ID() ) == 'bibliotech' ) {
echo "<div class='bilbioImg bilbioTechIcon'>
</div>";
echo "<div class='biblioPadding'> <a href='/news/bibliotech-index/' title='Bibliotech'>Bibliotech</a>"; ?>
<span class="mitDate">
<time class="updated" datetime="<?php echo get_the_date(); ?>"> <?php echo get_the_date(); ?></time>
</span> </div>
<?php } else {
$category = get_the_category();
$rCat = count( $category );
$r = rand( 0, $rCat -1 );
echo '<a title="' . $category[ $r ]->cat_name . '" title="' . $category[ $r ]->cat_name . '" href="' . get_category_link( $category[ $r ]->term_id ) . '">' . $category[ $r ]->cat_name . '</a>'; ?>
<span class="mitDate">
<time class="updated" datetime="<?php echo get_the_date(); ?>"> <?php echo get_the_date(); ?></time>
</span> </div>
<?php } ?>
</div><!--last-->
</div>
<?php if ( get_post_type( get_the_ID() ) == 'bibliotech' ) { ?>
</div><!--this div closes the open div in biblio padding-->
<?php } ?>
<!--//////////// -->
<?php endwhile;?>
</div> <!--closeFLexContainer-->
</div><!--closes row-->
<?php
if ( $L > 7 ) {
get_template_part( 'inc/more-posts' );
} ?>
</main>
<!-- #main -->
</div>
<script type="text/javascript">
$(document).ready(function() {
var offset = 9;
var limit = 0;
var car = "<?php echo esc_html( $search_query ); ?>";
var car = encodeURIComponent(car);
$("#postContainer").load("/news/search-results/");
$("#another").click(function(){
limit = limit + 18;
$("#postContainer")
.load("/news/search-results/?offset="+offset+"&limit="+limit+"&search="+car, function() {
$(this).slideDown();
});
return false;
});
});
</script>
<!-- #primary -->
<div class="container">
<?php get_footer(); ?>