Skip to content

Instantly share code, notes, and snippets.

@propertyhive
Created February 28, 2022 11:08
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/cdc2b5795aec7385e554cff7aa46fac9 to your computer and use it in GitHub Desktop.
Save propertyhive/cdc2b5795aec7385e554cff7aa46fac9 to your computer and use it in GitHub Desktop.
Limit number of results included in auto-match mailouts
add_filter( 'propertyhive_auto_match_maximum_results', 'limit_auto_match_maximum_results' );
function limit_auto_match_maximum_results( $number )
{
return 100; // change 100 accordingly
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment