Created
February 5, 2015 06:13
-
-
Save carolinan/eb8a91f65613cf094d8c to your computer and use it in GitHub Desktop.
content-single.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @package aaron | |
*/ | |
?> | |
<article id="post-<?php the_ID(); ?>" <?php post_class('aaron-border'); ?>> | |
<header class="entry-header"> | |
<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?> | |
<div class="entry-meta"> | |
<?php aaron_posted_on(); ?> | |
</div><!-- .entry-meta --> | |
</header><!-- .entry-header --> | |
<div class="entry-content"> | |
<?php | |
if ( has_post_thumbnail()){ | |
the_post_thumbnail(); | |
} | |
the_content(); | |
wp_link_pages( array( | |
'before' => '<div class="page-links">' . __( 'Pages:', 'aaron' ), | |
'after' => '</div>', | |
) ); | |
?> | |
</div><!-- .entry-content --> | |
<?php aaron_entry_footer(); ?> | |
</article><!-- #post-## --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment