하나의 확인란을 사용하여 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
하십시오. 또한 게시물 유형과 게시물 객체를 콜백에 전달하는 데 도움이됩니다.