Advertisement
Guest User

Untitled

a guest
Feb 25th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. <?php
  2.  
  3. add_filter( 'fg_entryautomation_maximum_attachment_size', 'increase_attachment_size', 10, 4 );
  4.  
  5. function increase_attachment_size( $maximum_file_size, $settings, $form, $file_name ) {
  6.  
  7. return 10485760;
  8.  
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement