Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tollmanz/1362592 to your computer and use it in GitHub Desktop.
Save tollmanz/1362592 to your computer and use it in GitHub Desktop.
Increase WordPress Exporter Script Execution Time
// Run function only when the export is initiated
add_action( 'export_wp', 'zdt_unlimited_script_time' );
/**
* Sets script execution time to unlimited.
*
* @return void
*/
function zdt_unlimited_script_time() {
set_time_limit( 0 );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment