filter

jetpack_sharing_display_text

Filter the sharing display text.

Parameters

$text
string

Sharing service text.

$id
(string | false)

Sharing ID.

$args
array

Array of sharing service options.

$this
object

Sharing service properties.

Changelog

How to use this hook

See “How to use actions and filters to customize Jetpack”.

Notes

You can use this filter to change the text of the links for each one of the sharing buttons. That text is only visible to screen readers by default. Here is how you could use that filter to change the text to “Spread the word!”:
function jetpack_developer_custom_sharing_text( $text, $this, $id, $args ) {
        return 'Spread the word!';
}
add_filter( 'jetpack_sharing_display_text', 'jetpack_developer_custom_sharing_text', 20, 4 );
To change the text for a specific button, you can use the $id parameter. Here is an example:
function jetpack_developer_custom_sharing_text( $text, $this, $id, $args ) {
        switch ( true ) {
                case ( 'sharing-twitter-650' == $id ):
                        $text = 'Share on Twitter';
                        break;
                case ( 'sharing-facebook-650' == $id ):
                        $text = 'Share on Facebook';
                        break;
                default:
                $text = $text;
       }
       return $text;
}
add_filter( 'jetpack_sharing_display_text', 'jetpack_developer_custom_sharing_text', 20, 4 );