Esempio n. 1
0
<?php 
        }
        ?>
						</div><!-- .entry-attachment -->
						<div class="entry-caption"><?php 
        if (!empty($post->post_excerpt)) {
            the_excerpt();
        }
        ?>
</div>
<?php 
        the_content(__('Continue reading &rarr;', 'boilerplate'));
        wp_link_pages(array('before' => '' . __('Pages:', 'boilerplate'), 'after' => ''));
        ?>
						<footer class="entry-utility">
							<?php 
        boilerplate_posted_in();
        ?>
							<?php 
        edit_post_link(__('Edit', 'boilerplate'), ' <span class="edit-link">', '</span>');
        ?>
						</footer><!-- .entry-utility -->
<?php 
        comments_template();
        ?>
					</div><!-- .entry-content -->
				</article>
<?php 
    }
}
get_footer();
Esempio n. 2
0
<?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 &rarr;', 'boilerplate' ), get_the_author() ); ?>
						</a>
					</footer><!-- #entry-author-info -->
<?php endif; ?>
					<footer class="entry-utility">
						<?php boilerplate_posted_in(); ?>					
					</footer><!-- .entry-utility -->
				</article><!-- #post-## -->
				<?php comments_template( '', true ); ?>
<?php endwhile; // end of the loop. ?>
<?php get_sidebar(); ?>
<?php get_footer(); ?>