freddielore
7/23/2017 - 11:36 AM

Smart SEO CSV Export

Smart SEO CSV Export

<?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; 
}
?>