[ Index ]

PHP Cross Reference of WordPress Trunk (Updated Daily)

Search

title

Body

[close]

/wp-content/themes/twentyfifteen/ -> search.php (source)

   1  <?php
   2  /**
   3   * The template for displaying search results pages.
   4   *
   5   * @package WordPress
   6   * @subpackage Twenty_Fifteen
   7   * @since Twenty Fifteen 1.0
   8   */
   9  
  10  get_header(); ?>
  11  
  12      <section id="primary" class="content-area">
  13          <main id="main" class="site-main">
  14  
  15          <?php if ( have_posts() ) : ?>
  16  
  17              <header class="page-header">
  18                  <h1 class="page-title">
  19                  <?php
  20                  /* translators: %s: Search query. */
  21                  printf( __( 'Search Results for: %s', 'twentyfifteen' ), get_search_query() );
  22                  ?>
  23                  </h1>
  24              </header><!-- .page-header -->
  25  
  26              <?php
  27              // Start the loop.
  28              while ( have_posts() ) :
  29                  the_post();
  30                  ?>
  31  
  32                  <?php
  33                  /*
  34                   * Run the loop for the search to output the results.
  35                   * If you want to overload this in a child theme then include a file
  36                   * called content-search.php and that will be used instead.
  37                   */
  38                  get_template_part( 'content', 'search' );
  39  
  40                  // End the loop.
  41              endwhile;
  42  
  43              // Previous/next page navigation.
  44              the_posts_pagination(
  45                  array(
  46                      'prev_text'          => __( 'Previous page', 'twentyfifteen' ),
  47                      'next_text'          => __( 'Next page', 'twentyfifteen' ),
  48                      /* translators: Hidden accessibility text. */
  49                      'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'twentyfifteen' ) . ' </span>',
  50                  )
  51              );
  52  
  53              // If no content, include the "No posts found" template.
  54          else :
  55              get_template_part( 'content', 'none' );
  56  
  57          endif;
  58          ?>
  59  
  60          </main><!-- .site-main -->
  61      </section><!-- .content-area -->
  62  
  63  <?php get_footer(); ?>


Generated : Sat Apr 20 08:20:01 2024 Cross-referenced by PHPXref