function enable_extended_upload ( $mime_types =array() ) {
$mime_types['gz'] = 'application/x-gzip';
$mime_types['zip'] = 'application/zip';
$mime_types['rar'] = 'application/rar';
$mime_types['rtf'] = 'application/rtf';
$mime_types['ppt'] = 'application/mspowerpoint';
$mime_types['ps'] = 'application/postscript';
$mime_types['flv'] = 'video/x-flv';
unset( $mime_types['exe'] );
unset( $mime_types['bin'] );
return $mime_types;
}
add_filter('upload_mimes', 'enable_extended_upload');
Имя: [text* your-name default:user_display_name]
E-mail: [email* your-email default:user_email]
if(pll_current_language() == 'ru') {
//code
} else if(pll_current_language() == 'en') {
//code
}
var_dump(pll_current_language());
add_filter( 'style_loader_tag', 'add_attribute', 10, 2 );
function add_attribute($link, $handle) {
if( $handle == 'fontawesome' ) {
$link = str_replace( '/>', 'integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous" />', $link );
}
return $link;
}