73 lines
1.3 KiB
PHP
73 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* The template for displaying Search Results pages.
|
|
*
|
|
* @package GeneratePress
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly.
|
|
}
|
|
|
|
get_header(); ?>
|
|
|
|
<div id="primary" <?php generate_content_class(); ?>>
|
|
<main id="main" <?php generate_main_class(); ?>>
|
|
<?php
|
|
/**
|
|
* generate_before_main_content hook.
|
|
*
|
|
* @since 0.1
|
|
*/
|
|
do_action( 'generate_before_main_content' );
|
|
|
|
if ( have_posts() ) : ?>
|
|
|
|
<header class="page-header">
|
|
<h1 class="page-title">
|
|
<?php
|
|
printf( // WPCS: XSS ok.
|
|
/* translators: 1: Search query name */
|
|
__( 'Search Results for: %s', 'generatepress' ),
|
|
'<span>' . get_search_query() . '</span>'
|
|
);
|
|
?>
|
|
</h1>
|
|
</header><!-- .page-header -->
|
|
|
|
<?php while ( have_posts() ) : the_post();
|
|
|
|
get_template_part( 'content', 'search' );
|
|
|
|
endwhile;
|
|
|
|
generate_content_nav( 'nav-below' );
|
|
|
|
else :
|
|
|
|
get_template_part( 'no-results', 'search' );
|
|
|
|
endif;
|
|
|
|
/**
|
|
* generate_after_main_content hook.
|
|
*
|
|
* @since 0.1
|
|
*/
|
|
do_action( 'generate_after_main_content' );
|
|
?>
|
|
</main><!-- #main -->
|
|
</div><!-- #primary -->
|
|
|
|
<?php
|
|
/**
|
|
* generate_after_primary_content_area hook.
|
|
*
|
|
* @since 2.0
|
|
*/
|
|
do_action( 'generate_after_primary_content_area' );
|
|
|
|
generate_construct_sidebars();
|
|
|
|
get_footer();
|