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/44da63389a01fbbfd1213c414a8f2b9a to your computer and use it in GitHub Desktop.
Save Oscar-Abad-Folgueira/44da63389a01fbbfd1213c414a8f2b9a to your computer and use it in GitHub Desktop.
WordPress Snippet: Cambiar traducción de textos
<?php
/**
* @snippet WordPress Snippet: Cambiar traducción de textos
* @author Oscar Abad Folgueira
* @author_url https://www.oscarabadfolgueira.com
* @snippet_url https://oscarabadfolgueira.com/
*/
// Cambiar la traducción del texto "Nombre de usuario o correo electrónico" del formulario de acceso
add_filter( 'gettext', 'oaf_change_traduction_text', 10, 3 );
function oaf_change_traduction_text( $translated, $original, $domain ) {
if ( $translated == "Nombre de usuario o correo electrónico" ) {
$translated = "Nombre de usuario";
}
return $translated;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment