Created
August 4, 2014 10:16
-
-
Save fovoc/cbeec4d7ee8c08ecbf4c to your computer and use it in GitHub Desktop.
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 | |
global $ss_framework; | |
while ( have_posts() ) : the_post(); | |
echo '<article class="' . implode( ' ', get_post_class() ) . '">'; | |
do_action( 'shoestrap_single_top' ); | |
shoestrap_title_section(); | |
do_action( 'shoestrap_entry_meta' ); | |
echo '<div class="entry-content">'; | |
do_action( 'shoestrap_single_pre_content' ); | |
the_content(); | |
echo $ss_framework->clearfix(); | |
echo '<hr/>'; | |
do_action( 'shoestrap_single_after_content' ); | |
echo '</div>'; | |
do_action( 'shoestrap_in_article_bottom' ); | |
echo '</article>'; | |
endwhile; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment