<?php /** * The Template for displaying all single posts. * * @package WordPress * @subpackage Boilerplate * @since Boilerplate 1.0 */ get_header(); ?> <div class="entry-meta" > POSTED <?php boilerplate_posted_on(); ?> </div><!-- .entry-meta --> <?php get_template_part('loop', 'index'); ?> <div class="comments"> <?php comments_template(); ?> </div><!-- .comments --> <div id="nav-below"> <a href="#" class="back-to-blog">← Back to blog</a> </div><!-- .nav-below --> <?php get_footer();
<?php /** * The Template for displaying all single posts. * * @package WordPress * @subpackage Boilerplate * @since Boilerplate 1.0 */ get_header(); ?> <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <h1 class="entry-title"><?php the_title(); ?><?php boilerplate_posted_on() ?></h1> <div class="entry-content"> <?php if (has_post_thumbnail()) : ?> <?php the_post_thumbnail(); ?> <?php endif; ?> <?php the_content(); ?> <?php wp_link_pages( array( 'before' => '' . __( 'Pages:', 'boilerplate' ), 'after' => '' ) ); ?> </div><!-- .entry-content --> <?php if ( get_the_author_meta( 'description' ) ) : // If a user has filled out their description, show a bio on their entries ?> <footer id="entry-author-info"> <?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'boilerplate_author_bio_avatar_size', 60 ) ); ?> <h2><?php printf( esc_attr__( 'About %s', 'boilerplate' ), get_the_author() ); ?></h2> <?php the_author_meta( 'description' ); ?> <a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>"> <?php printf( __( 'View all posts by %s →', 'boilerplate' ), get_the_author() ); ?> </a> </footer><!-- #entry-author-info -->