Skip to content

Instantly share code, notes, and snippets.

@freddielore
Last active January 13, 2019 03:15
Show Gist options
  • Select an option

  • Save freddielore/9e5add0cd1187549550eec6098c61172 to your computer and use it in GitHub Desktop.

Select an option

Save freddielore/9e5add0cd1187549550eec6098c61172 to your computer and use it in GitHub Desktop.
Smart SEO CSV Export Size
<?php
add_filter( 'smart_seo_export_size', 'my_custom_csv_export_limit', 9, 1 );
function my_custom_csv_export_limit($size){
// reducing it to 25 to avoid server timeouts
return 25;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment