-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch.php
More file actions
34 lines (30 loc) · 825 Bytes
/
search.php
File metadata and controls
34 lines (30 loc) · 825 Bytes
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
<?php get_header(); ?>
<body <?php body_class(); ?>>
<?php get_template_part("hero");?>
<div class="posts">
<div class="contanier">
<div class="row">
<div class="col-md-12">
<?php if(!have_posts()):?>
<?php echo "No text found"; ?>
<?php endif;?>
</div>
</div>
</div>
<?php while(have_posts()):
the_post();
get_template_part("alpha-formats/content", get_post_format());
?>
<?php endwhile; ?>
<div class="contanier">
<div class="row">
<div class="col-md-12 text-center">
<?php if(is_search()){ ?>
<h3>your search query:<?php the_search_query(); ?></h3>
<?php } ?>
<?php echo get_search_form(); ?>
</div>
</div>
</div>
</div>
<?php get_footer(); ?>