Move into wp-content path
Signed-off-by: Adrian Nöthlich <git@promasu.tech>
This commit is contained in:
50
wp-content/themes/Pirate-Rogue/search.php
Normal file
50
wp-content/themes/Pirate-Rogue/search.php
Normal file
@@ -0,0 +1,50 @@
|
||||
<?php
|
||||
/**
|
||||
* The template for displaying search results.
|
||||
*
|
||||
* @package Pirate Rogue
|
||||
* @since Pirate Rogue 1.0
|
||||
* @version 1.0
|
||||
*/
|
||||
|
||||
get_header(); ?>
|
||||
|
||||
|
||||
<div class="content-wrap">
|
||||
<div id="blog-wrap" class="blog-wrap cf">
|
||||
<div id="primary" class="site-content cf" role="main">
|
||||
<?php if ( have_posts() ) : ?>
|
||||
|
||||
<header class="archive-header">
|
||||
<h1 class="archive-title"><?php echo absint($wp_query->found_posts); ?> <?php printf( esc_html__( 'Search Results for: %s', 'pirate-rogue'), '<span>' . get_search_query() . '</span>' ); ?></h1>
|
||||
</header><!--end .archive-header -->
|
||||
|
||||
<?php
|
||||
while ( have_posts() ) :
|
||||
the_post();
|
||||
get_template_part( 'content' );
|
||||
endwhile;
|
||||
|
||||
// Previous/next page navigation.
|
||||
the_posts_pagination( array(
|
||||
'next_text' => '<span aria-hidden="true" class="meta-nav">' . esc_html__( 'Older', 'pirate-rogue') . '</span> ' .
|
||||
'<span class="screen-reader-text">' . esc_html__( 'Older Posts', 'pirate-rogue') . '</span> ',
|
||||
'prev_text' => '<span aria-hidden="true" class="meta-nav">' . esc_html__( 'Newer', 'pirate-rogue') . '</span> ' .
|
||||
'<span class="screen-reader-text">' . esc_html__( 'Newer Posts', 'pirate-rogue') . '</span> ' ,
|
||||
'before_page_number' => '<span class="meta-nav screen-reader-text">' . esc_html__( 'Page', 'pirate-rogue') . ' </span>',
|
||||
) );
|
||||
|
||||
// If no content, include the "No posts found" template.
|
||||
else :
|
||||
get_template_part( 'template-parts/content', 'none' );
|
||||
endif;
|
||||
?>
|
||||
|
||||
</div><!-- end #primary -->
|
||||
|
||||
<?php get_sidebar(); ?>
|
||||
|
||||
</div><!-- end .blog-wrap -->
|
||||
</div><!-- end .content-wrap -->
|
||||
|
||||
<?php get_footer(); ?>
|
||||
Reference in New Issue
Block a user