WP Metabox不保存帖子元

时间:2019-05-14 11:05:53

标签: php wordpress meta-boxes post-meta

我正在尝试在页面上实现一个简单的复选框,以便在用户选择的情况下动态添加HTML块,但是我无法保存post_meta来执行此任务,有人可以帮助我吗?从此复选框输入获取的值未保存在帖子元信息中。

这是我到目前为止对我的functions.php的了解

function wporg_add_custom_box(){
    $screens = ['page', 'wporg_cpt'];
    foreach ($screens as $screen) {
        add_meta_box(
            'wporg_box_id',           // Unique ID
            'Entra in Flee Block',  // Box title
            'wporg_custom_box_html',  // Content callback, must be of type callable
            $screen,                   // Post type
            'side'
        );
    }
}
add_action('add_meta_boxes', 'wporg_add_custom_box');


function wporg_custom_box_html($post){
    $value = get_post_meta($post->ID, '_wporg_meta_key', true);
    ?>
    <label for="wporg_field">Add "Entra in Flee" block to page</label>
    </br>
    <input type="checkbox" name="wporg_field" id="wporg_field" class="postbox">
    <?php
}


function wporg_save_postdata($post_id){
    if (array_key_exists('wporg_field', $_POST)) {
        update_post_meta(
            $post_id,
            '_wporg_meta_key',
            $_POST['wporg_field']
        );
    }
}
add_action('save_post', 'wporg_save_postdata');

1 个答案:

答案 0 :(得分:1)

您不要在wp_cusotm_box_html函数上使用$ value。 我认为应该是这样的:

function wporg_add_custom_box()
{
    $screens = ['page', 'wporg_cpt'];
    foreach ($screens as $screen) {
        add_meta_box(
            'wporg_box_id',           // Unique ID
            'Entra in Flee Block',  // Box title
            'wporg_custom_box_html',  // Content callback, must be of type callable
            $screen,                   // Post type
            'side'
        );
    }
}

add_action('add_meta_boxes', 'wporg_add_custom_box');
function wporg_custom_box_html($post)
{
    $value = get_post_meta($post->ID, '_wporg_meta_key', true) ? 'checked' : '';
    ?>
    <label for="wporg_field">Add "Entra in Flee" block to page</label>
    </br>
    <input type="checkbox" name="wporg_field" id="wporg_field" class="postbox" <?php echo $value; ?>>
    <?php
}

function wporg_save_postdata($post_id)
{
    if (array_key_exists('wporg_field', $_POST)) {
        update_post_meta(
            $post_id,
            '_wporg_meta_key',
            $_POST['wporg_field']
        );
    } else {
        delete_post_meta(
            $post_id,
            '_wporg_meta_key'
        );
    }
}

add_action('save_post', 'wporg_save_postdata');