forked from django-daiquiri/wordpress-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch.php
More file actions
26 lines (23 loc) · 649 Bytes
/
Copy pathsearch.php
File metadata and controls
26 lines (23 loc) · 649 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
<?php get_header(); ?>
<div class="wordpress">
<div class="row">
<div class="page col-md-9">
<h2>
Search results for "<?php
echo $_GET['s'];
?>".
</h2>
<p>
There are <?php
global $wp_query;
echo $wp_query->found_posts;
?> page(s) matching the search query.
</p>
<?php get_template_part('partials/loop', 'index'); ?>
</div>
<div class="sidebar col-md-3">
<?php get_sidebar(); ?>
</div>
</div>
</div>
<?php get_footer(); ?>