Created
September 2, 2015 14:26
-
-
Save anonymous/9f6a689e5a205049921b 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 | |
add_filter('fv/public/upload_form/label', 'custom_filter_public_upload_form_label', 1, 4); | |
function custom_filter_public_upload_form_label ($label, $field, $c, $contest) { | |
$lang = get_bloginfo( 'language' ); // 'ru-RU' - example | |
if ( trim($label) = "Titre de la vidéo" ) { | |
switch($lang) { | |
'be-BE': | |
return "New label" | |
break; | |
default: | |
break; | |
} | |
} | |
return $label; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment