Skip to content

Instantly share code, notes, and snippets.

@freddielore
Last active January 13, 2019 03:04
Show Gist options
  • Save freddielore/ae8253bbdcc81584c807ab301ef3b71f to your computer and use it in GitHub Desktop.
Save freddielore/ae8253bbdcc81584c807ab301ef3b71f to your computer and use it in GitHub Desktop.
Smart SEO CSV Import Size
<?php
add_filter( 'smart_seo_import_size', 'my_custom_csv_import_limit', 9, 1 );
function my_custom_csv_import_limit($size){
// reducing it to 5 to avoid server timeouts
return 5;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment