Created
October 25, 2022 11:56
-
-
Save Oscar-Abad-Folgueira/44da63389a01fbbfd1213c414a8f2b9a to your computer and use it in GitHub Desktop.
WordPress Snippet: Cambiar traducción de textos
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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