Skip to content

Instantly share code, notes, and snippets.

@pryley
Last active March 30, 2017 14:11
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 pryley/628ccca41297938c54bbe79c1e5c1b1f to your computer and use it in GitHub Desktop.
Save pryley/628ccca41297938c54bbe79c1e5c1b1f to your computer and use it in GitHub Desktop.
[Site Reviews snippet] Custom text strings
<?php
// Translate text strings
// http://codex.wordpress.org/Plugin_API/Filter_Reference/gettext
add_filter( 'gettext', function( $translated_text, $text, $domain ) {
    return ( $domain == 'site-reviews' && $translated_text == 'Submit your review' )
        ? __( 'Make it so!', 'site-reviews-custom' )
        : $translated_text;
}, 20, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment