megwoo
5/18/2016 - 12:03 AM

WordPress translate text snippets inline via functions.php

WordPress translate text snippets inline via functions.php

// translate
add_filter('gettext', 'translate_text');
add_filter('ngettext', 'translate_text');
function translate_text($translated) { 
	$translated = str_ireplace('Choose an option', 'Select', $translated); 
	$translated = str_ireplace('developed for', 'produced at', $translated); 
	return $translated; 
}