Skip to content

Commit

Permalink
hook in after-singular sidebar
Browse files Browse the repository at this point in the history
instead of calling it in the template - for consistency w/ other sidebars
  • Loading branch information
krogsgard committed Sep 30, 2012
1 parent c9361fc commit 3e815ab
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions happy/content-single.php
Expand Up @@ -25,6 +25,8 @@
<?php do_atomic( 'after_byline' ); // after title hook ?>

</header><!-- .entry-header -->

<?php do_atomic( 'before_the_content' ); // before title hook ?>

<div class="entry-content">
<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'happy' ) ); ?>
Expand All @@ -39,10 +41,8 @@

</article><!-- .hentry -->

<?php do_atomic( 'after_entry' ); // After entry hook ?>

<?php get_sidebar( 'after-singular' ); ?>
<?php do_atomic( 'after_entry' ); // After entry hook (also available on archives) ?>

<?php do_atomic( 'after_singular' ); // After singular hook ?>
<?php do_atomic( 'after_singular' ); // After singular hook (only on singular templates) ?>

<?php comments_template( '/comments.php', true ); ?>

0 comments on commit 3e815ab

Please sign in to comment.