Code-Snippets-Functions/Execute a function on a child site/AffiliateWP/disable-all-affiliatewp-emails.txt
2020-07-30 15:26:44 -06:00

4 lines
130 B
Text

function am_affwp_disable_all_emails() {
return true;
}
add_filter( 'affwp_disable_all_emails', 'am_affwp_disable_all_emails' );