Last active
April 1, 2016 11:22
-
-
Save timersys/1fd59ce672c13c22c08e to your computer and use it in GitHub Desktop.
Change or remove "powered by Wordpress Social Invitations" text
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
| <?php | |
| /* | |
| * Change or remove "powered by Wordpress Social Invitations" text | |
| * https://wordpress.org/plugins/wp-social-invitations/ | |
| */ | |
| add_filter( wsi/powered_by', 'custom_powered_wsi' ); | |
| function custom_powered_wsi( $text ) { | |
| $text = 'new text'; | |
| return $text; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment