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'); } Hello world! – salmannaz.online
Skip to content Skip to footer

1 Comment

  • A WordPress Commenter
    Posted January 19, 2026 at 9:01 pm

    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.

Leave a Reply to A WordPress Commenter Cancel reply