Skip to content

Instantly share code, notes, and snippets.

@fovoc
Created August 4, 2014 10:16
Show Gist options
  • Save fovoc/cbeec4d7ee8c08ecbf4c to your computer and use it in GitHub Desktop.
Save fovoc/cbeec4d7ee8c08ecbf4c to your computer and use it in GitHub Desktop.
<?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