How do I save each option in a multiple select menu as it’s own meta_key + meta_value pair?
Try this inside save_post but please note the code is not tested $old = get_post_meta($post_id, ‘products’); $new = isset ( $_POST[‘products’] ) ? $_POST[‘products’] : array(); if ( empty ($new) ) { // no products selected: completely delete alla meta values for the post delete_post_meta($post_id, ‘products’); } else { $already = array(); if ( ! … Read more