2014-11-23 73 views
0

我使用WordPress元框製作複選框列表,我無法在我的主題中獲得此值。我怎樣才能在metbox 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主題,我希望如果我能完成它快速,

謝謝

回答

0

當您嘗試施放一個數組作爲一個字符串,這通常發生。例如:

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

重訪您的循環以及您如何訪問它的值。在使用它之前,使用類似print_r()或var_dump()的方法來預覽數據。

+0

謝謝您的回答,但有可能解釋對我來說是正確的方式,因爲我不太瞭解PHP – 2014-11-23 19:29:02

0

在你的數組循環中,也許增加第二個循環會得到你需要的數組值。此外,您的代碼在循環內乍看起來可能會有一些語法錯誤

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 />'; 
    } 
} 
+0

感謝您的回答,但是您能否給我正確的完整循環以獲取我的主題值?這是我的第一個WordPress主題,也是我第一次使用Meta-框和我真的不知道太多關於PHP :( – 2014-11-23 19:36:48

+0

我的代碼是工作和保存更改,但我的問題是如何我在我的主題post pag中查看此值e – 2014-11-23 20:05:36

+0

您是否問如何在頁面上查看源代碼? – 2014-11-23 20:12:15