Sto cercando di impostare una meta_box con una singola casella di controllo, tutto va bene, tuttavia se deseleziono e salvo il post, segna di nuovo come selezionato, ho dato un'occhiata ma non riesco a trovare il mio errore.
Dai un'occhiata al mio codice.
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']);
}
});
Grazie in anticipo
add_meta_boxes
azione per aggiungere metabox (è lì appositamente per quello), come nell'esempio nellaadd_metabox
pagina del codice. Beneficerai anche di ottenere il tipo di post e l'oggetto post passati al callback.