diff options
Diffstat (limited to 'srcs/wordpress/wp-content/themes/twentysixteen/template-parts/content.php')
| -rw-r--r-- | srcs/wordpress/wp-content/themes/twentysixteen/template-parts/content.php | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/srcs/wordpress/wp-content/themes/twentysixteen/template-parts/content.php b/srcs/wordpress/wp-content/themes/twentysixteen/template-parts/content.php deleted file mode 100644 index 1497c76..0000000 --- a/srcs/wordpress/wp-content/themes/twentysixteen/template-parts/content.php +++ /dev/null @@ -1,61 +0,0 @@ -<?php -/** - * The template part for displaying content - * - * @package WordPress - * @subpackage Twenty_Sixteen - * @since Twenty Sixteen 1.0 - */ -?> - -<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> - <header class="entry-header"> - <?php if ( is_sticky() && is_home() && ! is_paged() ) : ?> - <span class="sticky-post"><?php _e( 'Featured', 'twentysixteen' ); ?></span> - <?php endif; ?> - - <?php the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?> - </header><!-- .entry-header --> - - <?php twentysixteen_excerpt(); ?> - - <?php twentysixteen_post_thumbnail(); ?> - - <div class="entry-content"> - <?php - the_content( - sprintf( - /* translators: %s: Post title. */ - __( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'twentysixteen' ), - get_the_title() - ) - ); - - 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>', - ) - ); - ?> - </div><!-- .entry-content --> - - <footer class="entry-footer"> - <?php twentysixteen_entry_meta(); ?> - <?php - edit_post_link( - sprintf( - /* translators: %s: Post title. */ - __( 'Edit<span class="screen-reader-text"> "%s"</span>', 'twentysixteen' ), - get_the_title() - ), - '<span class="edit-link">', - '</span>' - ); - ?> - </footer><!-- .entry-footer --> -</article><!-- #post-<?php the_ID(); ?> --> |
