Skip to content

Instantly share code, notes, and snippets.

@cryptexvinci
Last active February 28, 2023 05:45
Show Gist options
  • Select an option

  • Save cryptexvinci/12df3679f331ede18c776f515f7bbfcb to your computer and use it in GitHub Desktop.

Select an option

Save cryptexvinci/12df3679f331ede18c776f515f7bbfcb to your computer and use it in GitHub Desktop.
Ultimate Member - Need to change image upload minimum width limit.
<?php
add_filter( 'um_image_handle_global__option', function( $data ) {
$data['min_width'] = 300;
$data['min_height'] = 300;
return $data;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment