Guest User

Untitled

a guest
Oct 22nd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. $meta_query_args = array(
  2. array(
  3. 'key' => 'access_code',
  4. 'value' => 'abc',
  5. 'compare' => '='
  6. )
  7. );
  8.  
  9. $args = array(
  10. 'meta_query' => $meta_query_args
  11. );
  12.  
  13. $users = get_users( $args );
  14.  
  15. // User Loop
  16. foreach ( $users as $user ) {
  17. update_user_meta( $user->ID, 'association', 'XYZ Corporation');
  18. }
Add Comment
Please, Sign In to add comment