Metabox พร้อมด้วยช่องทำเครื่องหมายไม่ได้ปรับปรุง


10

ฉันพยายามตั้งค่า 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']);
    }

});

ขอบคุณล่วงหน้า

คำตอบ:


14

นี่คือรหัสที่ฉันใช้ก่อนหน้านี้ - ความแตกต่างที่สำคัญสำหรับฉันคือคุณกำลังตรวจสอบว่าเมตามีอยู่แทนที่จะเป็นค่าที่ควรพิจารณาว่าควรตรวจสอบหรือไม่

// Checkbox Meta
add_action("admin_init", "checkbox_init");

function checkbox_init(){
  add_meta_box("checkbox", "Checkbox", "checkbox", "post", "normal", "high");
}

function checkbox(){
  global $post;
  $custom = get_post_custom($post->ID);
  $field_id = $custom["field_id"][0];
 ?>

  <label>Check for yes</label>
  <?php $field_id_value = get_post_meta($post->ID, 'field_id', true);
  if($field_id_value == "yes") $field_id_checked = 'checked="checked"'; ?>
    <input type="checkbox" name="field_id" value="yes" <?php echo $field_id_checked; ?> />
  <?php

}

// Save Meta Details
add_action('save_post', 'save_details');

function save_details(){
  global $post;

if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
    return $post->ID;
}

  update_post_meta($post->ID, "field_id", $_POST["field_id"]);
}

ใช้การadd_meta_boxesดำเนินการสำหรับการเพิ่ม metaboxes (มันมีเฉพาะสำหรับมัน) ตามตัวอย่างในadd_metaboxหน้า codex นอกจากนี้คุณยังจะได้รับประโยชน์จากการโพสต์ประเภทและโพสต์วัตถุไปยังการโทรกลับ
t31os

13

ง่ายเพิ่มข้ออื่นในการลบเมตาโพสต์หากไม่ได้ตรวจสอบและรหัสของคุณจะไม่เป็นไรดังนั้นเปลี่ยน:

if ( isset($_POST['front_event']) ) {
    update_post_meta($post->ID, 'front_event', $_POST['front_event']);
}

ถึง

if ( isset($_POST['front_event']) ) {
    update_post_meta($post->ID, 'front_event', $_POST['front_event']);
}else{
    delete_post_meta($post->ID, 'front_event');
}

2
หากไม่ได้ทำเครื่องหมายในช่องจะไม่อยู่ในอาร์เรย์ $ _POST มันจะถูกส่งเมื่อตรวจสอบเท่านั้นเหตุใดคำสั่งอื่นจึงใช้งานได้
Tom J Nowell
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.