Skip to content

Instantly share code, notes, and snippets.

@propertyhive
Created February 16, 2022 11:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save propertyhive/71d50946d37a1df782c38b980d82c8a3 to your computer and use it in GitHub Desktop.
Save propertyhive/71d50946d37a1df782c38b980d82c8a3 to your computer and use it in GitHub Desktop.
Change auto-match recurrence frequency
add_filter( 'propertyhive_auto_email_match_cron_recurrence', 'change_auto_match_recurrence' );
function change_auto_match_recurrence($recurrence)
{
return 'hourly'; // hourly, twicedaily, daily
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment