-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch.php
More file actions
31 lines (26 loc) · 738 Bytes
/
Copy pathsearch.php
File metadata and controls
31 lines (26 loc) · 738 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
<div style="background-color: whitesmoke;">
<?php
$_SESSION["pg_nm"] = $wp_query->found_posts.' Search Results for '.get_search_query();
get_header(); ?>
<div class="container" >
<div class="row">
<div class="col m12 l8">
<main role="main">
<!-- section -->
<section>
<h1><?php echo sprintf( __( '%s Search Results for ', 'html5blank' ), $wp_query->found_posts ); echo get_search_query(); ?></h1>
<?php get_template_part('loop'); ?>
<?php get_template_part('pagination'); ?>
</section>
<!-- /section -->
</main>
</div>
<div class="col s12 m12 l4">
<?php get_sidebar(); ?>
</div>
<div class="col s12">
<?php get_footer(); ?>
</div>
</div>
</div>
</div>