AlkantarClanX12
Current Path : /home/thanudqk/siamfreetour.com/wp-content/themes/minimalpress/ |
Current File : /home/thanudqk/siamfreetour.com/wp-content/themes/minimalpress/search.php |
<?php /** * The template for displaying search results pages * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#search-result * * @package minimalpress */ get_header(); ?> <div id="content-wrap" class="container"> <section id="primary" class="content-area"> <main id="main" class="site-main"> <header class="page-header"> <h1 class="page-title"> <?php /* translators: %s: search query. */ printf( esc_html__( 'Search Results for: %s', 'minimalpress' ), '<span>' . get_search_query() . '</span>' ); ?> </h1> </header><!-- .page-header --> <div class="blog-archive clear"> <?php if ( have_posts() ) : ?> <?php /* Start the Loop */ while ( have_posts() ) : the_post(); /** * Run the loop for the search to output the results. * If you want to overload this in a child theme then include a file * called content-search.php and that will be used instead. */ get_template_part( 'template-parts/content', 'search' ); endwhile; else : get_template_part( 'template-parts/content', 'none' ); endif; ?> </div><!-- .blog-archive --> <?php the_posts_pagination( array( 'prev_text' => minimalpress_get_svg( array( 'icon' => 'arrow-left' ) ) . '<span class="screen-reader-text">' . __( 'Previous page', 'minimalpress' ) . '</span>', 'next_text' => '<span class="screen-reader-text">' . __( 'Next page', 'minimalpress' ) . '</span>' . minimalpress_get_svg( array( 'icon' => 'arrow-right' ) ), 'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'minimalpress' ) . ' </span>', ) ); ?> </main><!-- #main --> </section><!-- #primary --> <?php get_sidebar(); ?> </div><!-- .container --> <?php get_footer();