Skip to content

Instantly share code, notes, and snippets.

@LinzardMac
Created August 18, 2015 15:26
Show Gist options
  • Save LinzardMac/edd1bc592ec7093956d3 to your computer and use it in GitHub Desktop.
Save LinzardMac/edd1bc592ec7093956d3 to your computer and use it in GitHub Desktop.
foreach($users as $user) {
$tagged_user_photos = get_user_meta($user, 'tagged_photos', false);
var_dump($tagged_user_photos);
$tagged_user_photos[] = $post_id;
update_user_meta( $user, 'tagged_photos', $tagged_user_photos);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment