Created
December 27, 2013 04:33
-
-
Save zeropointdevelopment/8142626 to your computer and use it in GitHub Desktop.
[WordPress] Code from our blog post How to Move Jetpack Social Buttons with Genesis - http://www.limecanvas.com/how-to-move-jetpack-social-buttons-with-genesis/
This file contains hidden or 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
/** Jetpack Share Buttons **/ | |
function lc_add_jetpack_share_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_before_post_content', 'lc_add_jetpack_share_buttons' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment