Skip to content

Instantly share code, notes, and snippets.

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 wp-user-manager/69c45c3d67fb7bf4de5106441035b5c2 to your computer and use it in GitHub Desktop.
Save wp-user-manager/69c45c3d67fb7bf4de5106441035b5c2 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'wpum_get_registration_fields', function ( $fields ) {
if ( isset( $fields['privacy'] ) ) {
unset( $fields['privacy'] );
}
return $fields;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment