我试图设置一个具有单个复选框的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
法典页面上的示例,使用添加metabox 的操作(专门针对该操作)。您还将受益于将post类型和post对象传递给回调。