Skip to content

Instantly share code, notes, and snippets.

@jjmontalban
Last active February 3, 2023 09:48
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 jjmontalban/7877487101dc3ee784c2837f2ef7c4a3 to your computer and use it in GitHub Desktop.
Save jjmontalban/7877487101dc3ee784c2837f2ef7c4a3 to your computer and use it in GitHub Desktop.
Traducir cualquier texto en WP
<?php
/* Traducir cualquier texto en WordPress */
add_filter( 'gettext', 'traducir_cualquier_texto', 10, 3 );
function traducir_cualquier_texto( $translated, $original, $domain )
{
if ( $translated == "Shipping and delivery" ) {
$translated = "Envío y Entrega";
}
if ( $original == "Delivery Date" ) {
$translated = "Elegir fecha de entrega";
}
if ( $translated == "Delivery Date&nbsp;" ) {
$translated = "Elegir fecha de entrega ";
}
return $translated;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment