-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.php
75 lines (68 loc) · 2.71 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
<?php get_header();?>
<section class="hero-wrap hero-wrap-2" style="background-image: url('<?php echo get_template_directory_uri()?>./assets/images/computer-search.jpg');">
<div class="container">
<div class="row no-gutters slider-text align-items-end justify-content-center">
<div class="col-md-9 ftco-animate pb-5 text-center">
<h1 class="search text-danger font-weight-bold"><?php _e('Search Results...','educulture');?></h1>
</div>
</div>
</div>
</section>
<section <?php post_class();?> class="ftco-section bg-light">
<div class="container">
<div class="text-center mt-3">
<?php
echo get_search_form();
?>
</div>
<div class="search-result text-center mt-3">
<?php
if(is_search()){
?>
<h3><span class="text-primary"><?php _e("You searched for:","educulture") ?></span> <?php the_search_query(); ?></h3>
<?php
}
?>
</div>
<div class="posts single-page">
<?php
if ( ! have_posts() ):
?>
<div class="container">
<div class="row">
<div class="col-md-6 offset-md-3 p-3 text-center">
<h4 class=" bg-gradient-warning text-danger font-weight-bold">
<?php _e('No result found','educulture'); ?>
</h4>
</div>
</div>
</div>
<?php endif;?>
</div>
<div class="row">
<div class="col-md-10 offset-md-1">
<?php
while(have_posts()):
the_post();
?>
<div class="co<?php echo esc_attr($educulture_layout_class_second); ?> blog-section ftco-animate">
<div class="blog-entry">
<div class="text bg-white p-4">
<a href="<?php the_permalink();?>"><h2 class="text-center text-primary"><?php the_title();?></h2></a>
<div class="meta mb-4 text-center"><em><?php echo the_author_posts_link();?></em><span class="mx-2">•</span> <a href="<?php the_permalink(); ?>"><?php echo get_the_date();?></a></div>
<p class="text-justify mt-5"><?php the_content();?></p>
</div>
</div>
</div>
<?php endwhile;?>
</div>
<div class="col-md-8 offset-md-2 text-center my-5">
<div class="block-27 text-center">
<?php the_posts_pagination();?>
</div>
</div>
</div>
</div>
</section>
<?php get_footer();?>
<?php wp_footer();?>