-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.php
executable file
·44 lines (35 loc) · 1.37 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
<?php
/**
* The template for displaying search results pages
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#search-result
*
* @package selfish
*/
get_header();
?>
<section id="primary" class="content-area my-4 container">
<div class="row">
<main id="main" class="site-main col-md-9">
<?php if (have_posts()) : ?>
<header class="page-header border-bottom mb-4">
<h1 class="page-title">
<?php
/* translators: %s: search query. */
printf(esc_html__('Search Results for: %s', 'selfish'), '<span>' . get_search_query() . '</span>');
?>
</h1>
</header><!-- .page-header -->
<?php while (have_posts()) : ?>
<?php the_post(); ?>
<?php get_template_part('template-parts/list'); ?>
<?php endwhile; ?>
<?php the_posts_navigation(); ?>
<?php else : ?>
<?php get_template_part('template-parts/content', 'none'); ?>
<?php endif; ?>
</main><!-- #main -->
<?php get_sidebar(); ?>
</div>
</section><!-- #primary -->
<?php get_footer(); ?>