Как сохранить несколько флажков в метаданных обновлений в wordpress?

У меня есть несколько флажков, и я хочу сохранить этот флажок, а также обновить его в update_post_meta, чтобы в следующий раз, когда пользователь отредактировал сообщение, он узнает, какие флажки уже отмечены. Я не знаю, где я ошибаюсь. Вот мой код:

add_action( 'add_meta_boxes', 'add_custom_box' ); function add_custom_box( $post ) { add_meta_box( 'Meta Box', // ID, should be a string 'Music', // Meta Box Title 'music_meta_box', // Your call back function, this is where your form field will go 'post', // The post type you want this to show up on, can be post, page, or custom post type 'side', // The placement of your meta box, can be normal or side 'core' // The priority in which this will be displayed ); } function music_meta_box( $post ) { // Get post meta value using the key from our save function in the second paramater. $custom_meta = get_post_meta($post->ID, 'custom-meta-box', true); ?> <input type="checkbox" name="custom-meta-box[]" value="huge" <?php if(isset($_POST['custom-meta-box']['huge'])) echo 'checked="checked"'; ?> /> Huge <br> <input type="checkbox" name="custom-meta-box[]" value="house" <?php if(isset($_POST['custom-meta-box']['house'])) echo 'checked="checked"'; ?> /> House <br> <input type="checkbox" name="custom-meta-box[]" value="techno" <?php if(isset($_POST['custom-meta-box']['techno'])) echo 'checked="checked"'; ?> /> Techno <br> <?php } add_action( 'save_post', 'save_music_meta_box' ); function save_music_meta_box(){ global $post; // Get our form field if(isset( $_POST['custom-meta-box'] )) : $custom = $_POST['custom-meta-box']; // Update post meta foreach($ids as $id){ update_post_meta($id, '_custom-meta-box', $custom[$id]); wp_set_object_terms( $id, $custom[$id], 'Music' ); } endif; } 

Пожалуйста помоги

Попробуйте эту логику: –

 function music_meta_box( $post ) { // Get post meta value using the key from our save function in the second paramater. $custom_meta = get_post_meta($post->ID, '_custom-meta-box', true); ?> <input type="checkbox" name="custom-meta-box[]" value="huge" <?php echo (in_array('huge', $custom_meta)) ? 'checked="checked"' : ''; ?> />Huge <br> <input type="checkbox" name="custom-meta-box[]" value="house" <?php echo (in_array('house', $custom_meta)) ? 'checked="checked"' : ''; ?> />House <br> <input type="checkbox" name="custom-meta-box[]" value="techno" <?php echo (in_array('techno', $custom_meta)) ? 'checked="checked"' : ''; ?> />Techno<br> <?php } add_action( 'save_post', 'save_music_meta_box' ); function save_music_meta_box() { global $post; // Get our form field if(isset( $_POST['custom-meta-box'] )) { $custom = $_POST['custom-meta-box']; $old_meta = get_post_meta($post->ID, '_custom-meta-box', true); // Update post meta if(!empty($old_meta)){ update_post_meta($post->ID, '_custom-meta-box', $custom); } else { add_post_meta($post->ID, '_custom-meta-box', $custom, true); } } } 

Надеюсь, это поможет вам.