Skip to content

Instantly share code, notes, and snippets.

Created September 2, 2015 14:26
Show Gist options
  • Save anonymous/9f6a689e5a205049921b to your computer and use it in GitHub Desktop.
Save anonymous/9f6a689e5a205049921b to your computer and use it in GitHub Desktop.
<?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