Skip to content

Instantly share code, notes, and snippets.

Created August 1, 2014 08:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/128f09ce5a4962e1d6a8 to your computer and use it in GitHub Desktop.
Save anonymous/128f09ce5a4962e1d6a8 to your computer and use it in GitHub Desktop.
//* Buttons
function kris_jetpack_buttons(){
remove_filter( 'the_content', 'sharing_display', 19 );
remove_filter( 'the_excerpt', 'sharing_display', 19 );
if ( function_exists( 'sharing_display' ) ) {
echo sharing_display();
}
}
add_action( 'genesis_entry_header', 'kris_jetpack_buttons', 12 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment