Skip to content

Instantly share code, notes, and snippets.

@danieljwonder
Created July 31, 2018 04:19
Show Gist options
  • Select an option

  • Save danieljwonder/1f30f61e7fa968804ee8199e832e7531 to your computer and use it in GitHub Desktop.

Select an option

Save danieljwonder/1f30f61e7fa968804ee8199e832e7531 to your computer and use it in GitHub Desktop.
Disable Discourse account activation email for sites with WP Discourse SSO
<?php
/*
* Disable Discourse account activation email for sites with WP Discourse SSO
*/
add_filter( 'discourse_email_verification', 'wpdc_sso_disable_email_verification' );
function wpdc_sso_disable_email_verification() {
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment