This repository has been archived by the owner on Feb 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsearch.php
62 lines (43 loc) · 1.65 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
<?php
/**
* The template for displaying search results pages.
*
* @package nano-progga
*/
get_header(); ?>
<section id="primary" class="content-area col-sm-9">
<div class="row">
<main id="main" class="site-main col-sm-9 pull-right" role="main">
<?php if ( have_posts() ) : ?>
<header class="page-header">
<h1 class="page-title archive-title"><?php printf( esc_html__( 'Search Results for: %s', 'nano-progga' ), '<span>' . get_search_query() . '</span>' ); printf( _n( ' <small>(%s found)</small>', ' <small>(%s found)</small>', absint( $wp_query->found_posts ), 'nano-progga' ), absint( $wp_query->found_posts ) ); ?></h1>
</header><!-- .page-header -->
<div class="row">
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<div class="article-holder col-md-12">
<div class="article-area">
<?php
/**
* Run the loop for the search to output the results.
* If you want to overload this in a child theme then include a file
* called content-search.php and that will be used instead.
*/
get_template_part( 'template-parts/content', 'search' );
?>
</div> <!-- /.article-area -->
</div> <!-- /.article-holder col-md-12 -->
<?php endwhile; ?>
</div> <!-- /.row -->
<?php nano_progga_pagination(); ?>
<?php else : ?>
<div class="row">
<?php get_template_part( 'template-parts/content', 'archive-none' ); ?>
</div> <!-- /.row -->
<?php endif; ?>
</main><!-- #main -->
<?php get_sidebar( 'left' ); ?>
</div> <!-- .row -->
</section><!-- #primary -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>