[ Index ]

PHP Cross Reference of WordPress Trunk (Updated Daily)

Search

title

Body

[close]

/wp-content/themes/twentythirteen/ -> content.php (source)

   1  <?php
   2  /**
   3   * The default template for displaying content
   4   *
   5   * Used for both single and index/archive/search.
   6   *
   7   * @package WordPress
   8   * @subpackage Twenty_Thirteen
   9   * @since Twenty Thirteen 1.0
  10   */
  11  ?>
  12  
  13  <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  14      <header class="entry-header">
  15          <?php if ( has_post_thumbnail() && ! post_password_required() && ! is_attachment() ) : ?>
  16          <div class="entry-thumbnail">
  17              <?php the_post_thumbnail(); ?>
  18          </div>
  19          <?php endif; ?>
  20  
  21          <?php if ( is_single() ) : ?>
  22          <h1 class="entry-title"><?php the_title(); ?></h1>
  23          <?php else : ?>
  24          <h1 class="entry-title">
  25              <a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
  26          </h1>
  27          <?php endif; // is_single() ?>
  28  
  29          <div class="entry-meta">
  30              <?php twentythirteen_entry_meta(); ?>
  31              <?php edit_post_link( __( 'Edit', 'twentythirteen' ), '<span class="edit-link">', '</span>' ); ?>
  32          </div><!-- .entry-meta -->
  33      </header><!-- .entry-header -->
  34  
  35      <?php if ( is_search() ) : // Only display excerpts for search. ?>
  36      <div class="entry-summary">
  37          <?php the_excerpt(); ?>
  38      </div><!-- .entry-summary -->
  39      <?php else : ?>
  40      <div class="entry-content">
  41          <?php
  42              the_content(
  43                  sprintf(
  44                      /* translators: %s: Post title. Only visible to screen readers. */
  45                      __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
  46                      the_title( '<span class="screen-reader-text">', '</span>', false )
  47                  )
  48              );
  49  
  50              wp_link_pages(
  51                  array(
  52                      'before'      => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>',
  53                      'after'       => '</div>',
  54                      'link_before' => '<span>',
  55                      'link_after'  => '</span>',
  56                  )
  57              );
  58          ?>
  59      </div><!-- .entry-content -->
  60      <?php endif; ?>
  61  
  62      <footer class="entry-meta">
  63          <?php if ( comments_open() && ! is_single() ) : ?>
  64              <div class="comments-link">
  65                  <?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a comment', 'twentythirteen' ) . '</span>', __( 'One comment so far', 'twentythirteen' ), __( 'View all % comments', 'twentythirteen' ) ); ?>
  66              </div><!-- .comments-link -->
  67          <?php endif; // comments_open() ?>
  68  
  69          <?php if ( is_single() && get_the_author_meta( 'description' ) && is_multi_author() ) : ?>
  70              <?php get_template_part( 'author-bio' ); ?>
  71          <?php endif; ?>
  72      </footer><!-- .entry-meta -->
  73  </article><!-- #post -->


Generated : Mon Mar 18 08:20:01 2024 Cross-referenced by PHPXref