Skip to content

Instantly share code, notes, and snippets.

@timersys
Last active April 1, 2016 11:22
Show Gist options
  • Select an option

  • Save timersys/1fd59ce672c13c22c08e to your computer and use it in GitHub Desktop.

Select an option

Save timersys/1fd59ce672c13c22c08e to your computer and use it in GitHub Desktop.
Change or remove "powered by Wordpress Social Invitations" text
<?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