Created
December 29, 2017 14:50
-
-
Save Alir3z4/ebe5a1e4be686f6e6e3a4940bc4a258e to your computer and use it in GitHub Desktop.
Put this before "app themes"
This file contains hidden or 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
add_filter('appthemes_plupload_config', 'enable_plupload_multisel', 10 ,1); | |
function enable_plupload_multisel($app_plupload_config) | |
{ | |
$app_plupload_config['plupload']['multi_selection'] = true; | |
return $app_plupload_config; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment