Skip to content

Instantly share code, notes, and snippets.

@dancameron
Forked from mauriciogofas/functions.php
Last active August 29, 2015 14:16
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 dancameron/27a23212827696ff2d20 to your computer and use it in GitHub Desktop.
Save dancameron/27a23212827696ff2d20 to your computer and use it in GitHub Desktop.
<?php
/**
* Example filter will translate/change the string "Description".
* "Description" can be changed to whatever string you'd like to translate/change
* just make sure to change the function name so you don't have any conflicts.
*/
function l10n_description( $text ) {
return 'Beschrijving';
}
add_filter( 'si_string_'.sanitize_title( 'Description' ), 'l10n_description' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment