Advertisement
GochiSiyan

fix code

Apr 30th, 2021
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. add_action('wp_head',function () {
  2. $users = get_users();
  3. foreach ($users as $user) {
  4. delete_user_option( $user_id, 'profile_picture');
  5. delete_user_meta( $user_id,'profile_picture' );
  6. }
  7. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement