Code-Snippets-Functions/Execute a function on a child site/Advanced Woo Search/descrease-max-cron-attempts.txt

4 lines
142 B
Text

add_filter( 'aws_index_max_cron_attemps', 'my_aws_index_max_cron_attemps' );
function my_aws_index_max_cron_attemps( $num ) {
return 5;
}