]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-content/themes/twentythirteen/content.php
WordPress 4.3.1
[autoinstalls/wordpress.git] / wp-content / themes / twentythirteen / content.php
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                         /* translators: %s: Name of current post */
43                         the_content( sprintf(
44                                 __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
45                                 the_title( '<span class="screen-reader-text">', '</span>', false )
46                         ) );
47
48                         wp_link_pages( array( 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) );
49                 ?>
50         </div><!-- .entry-content -->
51         <?php endif; ?>
52
53         <footer class="entry-meta">
54                 <?php if ( comments_open() && ! is_single() ) : ?>
55                         <div class="comments-link">
56                                 <?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a comment', 'twentythirteen' ) . '</span>', __( 'One comment so far', 'twentythirteen' ), __( 'View all % comments', 'twentythirteen' ) ); ?>
57                         </div><!-- .comments-link -->
58                 <?php endif; // comments_open() ?>
59
60                 <?php if ( is_single() && get_the_author_meta( 'description' ) && is_multi_author() ) : ?>
61                         <?php get_template_part( 'author-bio' ); ?>
62                 <?php endif; ?>
63         </footer><!-- .entry-meta -->
64 </article><!-- #post -->