mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-26 19:33:58 +08:00
4 lines
142 B
Text
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;
|
|
}
|