Skip to content

Instantly share code, notes, and snippets.

@wpspeak
Forked from norcross/jetpack-twitter-via.php
Last active December 24, 2015 05:09
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 wpspeak/6748954 to your computer and use it in GitHub Desktop.
Save wpspeak/6748954 to your computer and use it in GitHub Desktop.
Add Twitter handle to Jetpack Sharing module
<?php
//* Add Twitter handle to Jetpack Sharing module
add_filter ( 'jetpack_sharing_twitter_via', 'afn_add_twitterhandle_via' );
function afn_add_twitterhandle_via() {
return 'WPSpeak';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment