Advertisement
verygoodplugins

Untitled

Jun 5th, 2019
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. function wpf_downgrade_role( $user_id, $action ) {
  2.  
  3.     if( isset( $_GET['downgrade_role'] ) ) {
  4.  
  5.         $user = new WP_User( $user_id );
  6.         $user->set_role( 'subscriber' );
  7.     }
  8.  
  9. }
  10.  
  11. add_action( 'wpf_api_success', 'wpf_downgrade_role', 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement