Skip to content

Instantly share code, notes, and snippets.

@digisavvy
Created December 11, 2015 02:16
Show Gist options
  • Save digisavvy/1734e25d87619a6f1695 to your computer and use it in GitHub Desktop.
Save digisavvy/1734e25d87619a6f1695 to your computer and use it in GitHub Desktop.
Change Jetpack Protect Bot Challenge Text
/**
* Change text string for Jetpack Protect Bot Challenge Text
*
* @link http://codex.wordpress.org/Plugin_API/Filter_Reference/gettext
*/
function digisavvy_change_humanity_string( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case 'Prove your humanity:' :
$translated_text = __( 'Prove you\'re not a bot', 'jetpack' );
break;
}
return $translated_text;
}
add_filter( 'gettext', 'digisavvy_change_humanity_string', 20, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment