diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2016-08-16 09:02:43 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2016-08-16 09:04:16 -0400 |
commit | ca2931bbb7ea682e3cdbc1775737d1e6897974ab (patch) | |
tree | 1a68e9c1988a78bcc8f8f42fb64f9bce5ee3be08 /themes/twentysixteen/template-parts/content-single.php | |
parent | Update plugin jetpack to 4.1.1 (diff) | |
download | blogs-gentoo-ca2931bbb7ea682e3cdbc1775737d1e6897974ab.tar.gz blogs-gentoo-ca2931bbb7ea682e3cdbc1775737d1e6897974ab.tar.bz2 blogs-gentoo-ca2931bbb7ea682e3cdbc1775737d1e6897974ab.zip |
Update to twentyfourteen-1.8 twentyfifteen-1.6 twentysixteen-1.3
Diffstat (limited to 'themes/twentysixteen/template-parts/content-single.php')
-rw-r--r-- | themes/twentysixteen/template-parts/content-single.php | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/themes/twentysixteen/template-parts/content-single.php b/themes/twentysixteen/template-parts/content-single.php new file mode 100644 index 00000000..241f5285 --- /dev/null +++ b/themes/twentysixteen/template-parts/content-single.php @@ -0,0 +1,53 @@ +<?php +/** + * The template part for displaying single posts + * + * @package WordPress + * @subpackage Twenty_Sixteen + * @since Twenty Sixteen 1.0 + */ +?> + +<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> + <header class="entry-header"> + <?php the_title( '<h1 class="entry-title">', '</h1>' ); ?> + </header><!-- .entry-header --> + + <?php twentysixteen_excerpt(); ?> + + <?php twentysixteen_post_thumbnail(); ?> + + <div class="entry-content"> + <?php + the_content(); + + wp_link_pages( array( + 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentysixteen' ) . '</span>', + 'after' => '</div>', + 'link_before' => '<span>', + 'link_after' => '</span>', + 'pagelink' => '<span class="screen-reader-text">' . __( 'Page', 'twentysixteen' ) . ' </span>%', + 'separator' => '<span class="screen-reader-text">, </span>', + ) ); + + if ( '' !== get_the_author_meta( 'description' ) ) { + get_template_part( 'template-parts/biography' ); + } + ?> + </div><!-- .entry-content --> + + <footer class="entry-footer"> + <?php twentysixteen_entry_meta(); ?> + <?php + edit_post_link( + sprintf( + /* translators: %s: Name of current post */ + __( 'Edit<span class="screen-reader-text"> "%s"</span>', 'twentysixteen' ), + get_the_title() + ), + '<span class="edit-link">', + '</span>' + ); + ?> + </footer><!-- .entry-footer --> +</article><!-- #post-## --> |