Advertisement
wclovers

Untitled

Feb 2nd, 2022
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.45 KB | None | 0 0
  1. add_action( 'wcfm_init', function() {
  2.     $users = get_users( array(
  3.         'role' => 'wcfm_vendor',
  4.         'fields' => array( 'ID', 'user_nicename' )
  5.     ) );
  6.  
  7.     foreach( $users as $user ) {
  8.         if( substr($user->user_nicename, -1) == '%' ) {
  9.             wp_update_user( array(
  10.                 'ID'            => $user->ID,
  11.                 'user_nicename' => substr($user->user_nicename, 0, -1)
  12.             ) );
  13.         }
  14.     }
  15. } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement