Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter( 'jnews_frontend_max_upload_size', 'change_upload_size' );
- function change_upload_size( $size ) {
- // change the 2 value to max size upload you want
- $size = 2 * 1000 * 1024;
- return $size;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement