mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-28 11:22:21 +08:00
5 lines
204 B
Text
5 lines
204 B
Text
add_filter( 'gform_export_max_execution_time', 'change_export_time', 10, 2 );
|
|
function change_export_time( $max_execution_time, $form ){
|
|
//change the execution time to 60 seconds
|
|
return 60;
|
|
}
|