如何在 metbox wordpress 中获取多个复选框值


How can i get multi checkboxes value in metbox wordpress

>我通过WordPress元框列出了复选框,但我无法在我的主题中获得此值。

我可以用这个代码获取我的文本值

<? echo get_post_meta($post->ID, $prefix . 'text', true); ?>

但是如果我在复选框中使用此代码,它会给我"数组"

这是我的完整代码

$prefix = 'dbt_';
$meta_box = array(
'id' => 'my-meta-box',
'title' => 'Product Information',
'page' => 'post',
'context' => 'normal',
'priority' => 'high',
'fields' => array(
array(
        'name' => 'Colors',
        'desc'  => '',
        'id'    => $prefix.'colors',
        'type'  => 'checkbox_group',
        'options' => array (
        'one' => array (
        'label' => 'Black',
        'value' => 'one'
    ),
        'two' => array (
        'label' => 'White',
        'value' => 'two'
    ),
        'three' => array (
        'label' => 'Red',
        'value' => 'three'
    ),
        'four' => array (
        'label' => 'Blue',
        'value' => 'four'
    ),
        'five' => array (
        'label' => 'Green',
        'value' => 'five'
    ),
        'six' => array (
        'label' => 'Yellow',
        'value' => 'six'
    ),
        'seven' => array (
        'label' => 'Brown',
        'value' => 'seven'
    )
)
)
)
);
  add_action('admin_menu', 'mytheme_add_box');
// Add meta box
function mytheme_add_box() {
global $meta_box;
add_meta_box($meta_box['id'], $meta_box['title'], 'mytheme_show_box', $meta_box['page'], $meta_box['context'], $meta_box['priority']);
}
    // Callback function to show fields in meta box
function mytheme_show_box() {
global $meta_box, $post;
// Use nonce for verification
echo '<input type="hidden" name="mytheme_meta_box_nonce" value="', wp_create_nonce(basename(__FILE__)), '" />';
echo '<table class="form-table">';
foreach ($meta_box['fields'] as $field) {
// get current post meta data
$meta = get_post_meta($post->ID, $field['id'], true);
echo '<tr>',
'<th style="width:20%"><label for="', $field['id'], '">', $field['name'], '</label></th>',
'<td>';
switch ($field['type']) {
case 'checkbox_group':
foreach ($field['options'] as $option) {
    echo '<input type="checkbox" value="'.$option['value'].'" name="'.$field['id'].'[]" id="'.$option['value'].'"',$meta && in_array($option['value'], $meta) ? ' checked="checked"' : '',' />
            <label for="'.$option['value'].'">'.$option['label'].'</label><br />';
}
break;
}
echo '</td><td>',
'</td></tr>';
}
echo '</table>';
}

add_action('save_post', 'mytheme_save_data');
// Save data from meta box
function mytheme_save_data($post_id) {
global $meta_box;
// verify nonce
if (!wp_verify_nonce($_POST['mytheme_meta_box_nonce'], basename(__FILE__))) {
return $post_id;
}
// check autosave
if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
return $post_id;
}
// check permissions
if ('page' == $_POST['post_type']) {
if (!current_user_can('edit_page', $post_id)) {
return $post_id;
}
} elseif (!current_user_can('edit_post', $post_id)) {
return $post_id;
}
foreach ($meta_box['fields'] as $field) {
$old = get_post_meta($post_id, $field['id'], true);
$new = $_POST[$field['id']];
if ($new && $new != $old) {
update_post_meta($post_id, $field['id'], $new);
} elseif ('' == $new && $old) {
delete_post_meta($post_id, $field['id'], $old);
}
}
}

任何身体都可以给我正确的完整代码来获取我的值,因为我正在尝试学习PHP语言

这是我的第一个WordPress主题,我希望如果我能快速完成它,

谢谢

当您尝试将数组转换为字符串时,通常会发生这种情况。例如:

$data = array('one', 'two', 'three');
echo $data;
// will echo Array

重新审视您的循环以及您如何访问其值。使用类似 print_r() 或 var_dump() 的内容在使用数据之前预览数据。

在你的数组循环中,也许添加第二个循环会得到你需要的数组值。 此外,乍一看,循环中的代码似乎可能存在一些语法错误

foreach ($field['options'] as $options) {
    foreach ($options as $option) {
    ...
    ...
    }
}

未测试,但这里有一个例子

 foreach ($field['options'] as $options) {
    foreach ($options as $option) {              
        $checked = $meta && in_array($option['value'], $meta) ? 'checked="checked"' : '';
        echo '<input type="checkbox" value="' . $option["value"] . '" name="' . $field["id"] . '[]" id="' . $option["value"] . ' ' . $checked . ' />';
        echo '<label for="' . $option["value"] . '">' . $option["label"] . '</label>';
        echo '<br />'; 
    }
 }