Skip to content

Instantly share code, notes, and snippets.

@digiltd
Forked from BFTrick/gettext-filter-multiple.php
Last active August 29, 2015 14:17
Show Gist options
  • Save digiltd/923ebdbce46dd3216f2c to your computer and use it in GitHub Desktop.
Save digiltd/923ebdbce46dd3216f2c to your computer and use it in GitHub Desktop.
<?php
/**
* Change text strings
*
* @link http://codex.wordpress.org/Plugin_API/Filter_Reference/gettext
*/
function my_text_strings( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case 'Sale!' :
$translated_text = __( 'Clearance!', 'woocommerce' );
break;
case 'Add to cart' :
$translated_text = __( 'Add to basket', 'woocommerce' );
break;
case 'Related Products' :
$translated_text = __( 'Check out these related products', 'woocommerce' );
break;
}
return $translated_text;
}
add_filter( 'gettext', 'my_text_strings', 20, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment