82 lines
1.7 KiB
PHP
82 lines
1.7 KiB
PHP
<?php
|
|
/**
|
|
* The template for displaying search results pages.
|
|
*
|
|
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#search-result
|
|
*
|
|
* @package Marianne
|
|
* @since Marianne 1.0
|
|
*/
|
|
|
|
get_header();
|
|
?>
|
|
|
|
<div id="content" class="site-content">
|
|
<main id="primary" class="site-primary" role="main">
|
|
<?php if ( have_posts() ) : ?>
|
|
<header class="archive-header">
|
|
<h1 class="page-title">
|
|
<?php
|
|
printf(
|
|
/* translators: %s: search term. */
|
|
esc_html__( 'Search for "%s"', 'marianne' ),
|
|
esc_html( get_search_query() )
|
|
);
|
|
?>
|
|
</h1>
|
|
|
|
<div class="archive-description">
|
|
<p>
|
|
<?php
|
|
printf(
|
|
esc_html(
|
|
/* translators: %d: the number of search results. */
|
|
_nx(
|
|
'%d result found:',
|
|
'%d results found:',
|
|
(int) $wp_query->found_posts,
|
|
'Search results',
|
|
'marianne'
|
|
)
|
|
),
|
|
(int) $wp_query->found_posts
|
|
);
|
|
?>
|
|
</p>
|
|
</div>
|
|
</header>
|
|
|
|
<?php
|
|
while ( have_posts() ) {
|
|
the_post();
|
|
|
|
get_template_part( 'template-parts/content', 'loop' );
|
|
}
|
|
|
|
marianne_loop_navigation();
|
|
?>
|
|
<?php else : ?>
|
|
<header class="archive-header">
|
|
<h1 class="page-title">
|
|
<?php
|
|
printf(
|
|
/* translators: %s: search term. */
|
|
esc_html__( 'Search for "%s"', 'marianne' ),
|
|
esc_html( get_search_query() )
|
|
);
|
|
?>
|
|
</h1>
|
|
</header>
|
|
|
|
<article <?php post_class( 'entry-page' ); ?>>
|
|
<section class="entry-content page-content">
|
|
<p><?php esc_html_e( 'This search did not return any results.', 'marianne' ); ?></p>
|
|
</section>
|
|
</article>
|
|
<?php endif; ?>
|
|
</main>
|
|
</div>
|
|
|
|
<?php
|
|
get_sidebar();
|
|
get_footer();
|