Skip to content

Instantly share code, notes, and snippets.

@nicomollet
Last active February 3, 2016 08:09
Show Gist options
  • Save nicomollet/13d362fcd1e80cc2c13b to your computer and use it in GitHub Desktop.
Save nicomollet/13d362fcd1e80cc2c13b to your computer and use it in GitHub Desktop.
Jetpack remove sharing text
<?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