-
-
Save max-kk/e6b52f320d97adb0ba2b 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