Skip to content

Instantly share code, notes, and snippets.

@carolinan
Created February 5, 2015 06:13
Show Gist options
  • Save carolinan/eb8a91f65613cf094d8c to your computer and use it in GitHub Desktop.
Save carolinan/eb8a91f65613cf094d8c to your computer and use it in GitHub Desktop.
content-single.php
<?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