Advertisement
arie_cristianD

change_max_upload_size_front_end

Aug 22nd, 2023
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. add_filter( 'jnews_frontend_max_upload_size', 'change_upload_size' );
  2. function change_upload_size( $size ) {
  3.     // change the 2 value to max size upload you want
  4.         $size = 2 * 1000 * 1024;
  5.     return $size;
  6. }
  7.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement