Skip to content

Instantly share code, notes, and snippets.

@DrewAPicture
Last active October 12, 2015 18:38
Show Gist options
  • Save DrewAPicture/4070273 to your computer and use it in GitHub Desktop.
Save DrewAPicture/4070273 to your computer and use it in GitHub Desktop.
Enable and set plupload scaling dimensions
function plupload_scaling( $defaults ) {
$defaults['resize'] = array(
'width' => 1024,
'height' => 1024,
'quality' => 100
);
return $defaults;
}
add_filter( 'plupload_default_settings', 'plupload_scaling' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment