Skip to content

Instantly share code, notes, and snippets.

@fovoc
Created November 14, 2014 10:30
Show Gist options
  • Save fovoc/310b4883aa3dd074fccc to your computer and use it in GitHub Desktop.
Save fovoc/310b4883aa3dd074fccc to your computer and use it in GitHub Desktop.
<?php
function my_custom_pre_main() {
echo 'This content will be visible after the content div and before the main content.';
}
function only_in_single_posts() {
if ( is_single() ) {
add_action( 'shoestrap_pre_main', 'my_custom_pre_main' );
}
}
add_action( 'init', 'only_in_single_posts' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment