Skip to content

Instantly share code, notes, and snippets.

@fovoc
Last active August 29, 2015 14:09
Show Gist options
  • Save fovoc/78230cb3bb706c275c12 to your computer and use it in GitHub Desktop.
Save fovoc/78230cb3bb706c275c12 to your computer and use it in GitHub Desktop.
<?php
function open_wrapper() {
echo '<div class="col-sm-8 col-sm-offset-2">';
}
function close_wrapper() {
echo '</div>';
}
function single_post_wrapper() {
if ( is_single() ) {
add_action( 'shoestrap_single_top', 'open_wrapper', 1 );
add_action( 'shoestrap_in_article_bottom', 'close_wrapper', 999 );
}
}
add_action( 'wp', 'single_post_wrapper' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment