Skip to content

Instantly share code, notes, and snippets.

@Alir3z4
Created December 29, 2017 14:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Alir3z4/ebe5a1e4be686f6e6e3a4940bc4a258e to your computer and use it in GitHub Desktop.
Save Alir3z4/ebe5a1e4be686f6e6e3a4940bc4a258e to your computer and use it in GitHub Desktop.
Put this before "app themes"
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