Advertisement
Guest User

Untitled

a guest
Apr 6th, 2020
346
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // User IDs from the form.
  2. $form_data = [
  3.     14,
  4.     2346,
  5.     125,
  6. ];
  7.  
  8. // Clear previous data in case user unsubscribed someone.
  9. delete_user_meta( $updated_user_id, 'subscribing_authors' );
  10.  
  11. // Add each subscribed author ID as a single entry.
  12. foreach( $form_data as $author_id ) {
  13.     add_user_meta( $updated_user_id, 'subscribing_authors', $author_id );
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement