単一のチェックボックスでmeta_boxを設定しようとすると、すべてがうまくいきますが、チェックを外して投稿を保存すると、再びチェック済みのマークが付きます。
私のコードを見てみましょう。
function am_checkbox_option() {
global $post;
$custom = get_post_custom($post->ID);
$front_event = $custom["front_event"][0];
wp_nonce_field(__FILE__, 'am_front_event');
if ( $front_event ) {
$checked = "checked=\"checked\"";
} else {
$checked = "";
}
?>
<label>Display Content? (type yes):</label>
<input type="checkbox" name="front_event" value="true" <?php echo $checked; ?> />
<?php
}
}
add_action('save_post', function() {
if ( defined( 'DOING_AUTOSAVE') && DOING_AUTOSAVE ) return;
global $post;
if ( $_POST && !wp_verify_nonce($_POST['am_front_event'], __FILE__) ) {
return;
}
if ( isset($_POST['front_event']) ) {
update_post_meta($post->ID, 'front_event', $_POST['front_event']);
}
});
前もって感謝します
add_meta_boxes
例のように、メタボックスを追加するためのアクションを使用します(そのために特別に用意されてadd_metabox
います)。また、ポストタイプとポストオブジェクトをコールバックに渡すことにもメリットがあります。