Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
add_action('wp_ajax_add_favorite', 'weddlist_add_favorite'); add_action('wp_ajax_nopriv_add_favorite', 'weddlist_add_favorite'); function weddlist_add_favorite(){ $vendor_id = intval($_POST['vendor_id']); $user_id = get_current_user_id(); $favorites = get_user_meta($user_id,'favorite_vendors',true); if(!is_array($favorites)) $favorites = []; if(!in_array($vendor_id,$favorites)) $favorites[] = $vendor_id; update_user_meta($user_id,'favorite_vendors',$favorites); wp_send_json_success('Added to favorites'); }
1 Comment
A WordPress Commenter
Hi, this is a comment.
To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
Commenter avatars come from Gravatar.