-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsearch.php
executable file
·47 lines (33 loc) · 1.27 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
<?php
/**
* The template for displaying Search Results pages.
*
* @package Indieweb Publisher
* @since Indieweb Publisher 1.0
*/
get_header(); ?>
<section id="primary" class="content-area">
<main id="content" class="site-content" role="main">
<?php if ( have_posts() ) : ?>
<?php $search_stats = apply_filters( 'indieweb_publisher_search_stats', indieweb_publisher_search_stats() ); ?>
<header class="page-header">
<h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'indieweb-publisher' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
<?php echo apply_filters( 'search_meta', '<div class="search-stats-description">' . $search_stats . '</div>' ); ?>
<?php indieweb_publisher_the_posts_navigation(); ?>
</header><!-- .page-header -->
<?php /* Start the Loop */ ?>
<?php
while ( have_posts() ) :
the_post();
?>
<?php get_template_part( 'template-parts/content', 'search' ); ?>
<?php endwhile; ?>
<?php indieweb_publisher_the_posts_navigation(); ?>
<?php else : ?>
<?php get_template_part( 'template-parts/content', 'none' ); ?>
<?php endif; ?>
</main>
<!-- #content .site-content -->
</section><!-- #primary .content-area -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>