Last active
February 3, 2016 08:09
-
-
Save nicomollet/13d362fcd1e80cc2c13b to your computer and use it in GitHub Desktop.
Jetpack remove sharing text
This file contains 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
<?php | |
add_filter( 'jetpack_sharing_display_text', 'custom_jetpack_sharing_display_text', 10, 2 ); | |
function custom_jetpack_sharing_display_text( $title ){ | |
return ''; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment