Skip to content

Instantly share code, notes, and snippets.

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 Oscar-Abad-Folgueira/cbb77cee9c3731dd19f1b3220d40b85b to your computer and use it in GitHub Desktop.
Save Oscar-Abad-Folgueira/cbb77cee9c3731dd19f1b3220d40b85b to your computer and use it in GitHub Desktop.
Modificar traduccion cualquier texto en WordPress
<?php
/**
* @snippet Modificar traduccion cualquier texto en WordPress
* @author Oscar Abad Folgueira
* @author_url https://www.oscarabadfolgueira.com
* @snippet_url https://www.oscarabadfolgueira.com/como-traducir-cualquier-texto-en-wordpress/
*/
add_filter( 'gettext', 'traducir_cualquier_texto', 10, 3 );
function traducir_cualquier_texto( $translated, $original, $domain ) {
if ( $translated == "Agotado" ) {
$translated = "Sacabao!";
}
return $translated;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment