-
-
Save dancameron/27a23212827696ff2d20 to your computer and use it in GitHub Desktop.
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 | |
/** | |
* 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