我有一個卡住,讓我很頭痛,因爲你看到的圖片,這是我的結果,當我添加選項的事件。添加選項的事件(WordPress的)
我更新代碼:wp-content/theme/mytheme/lib/metabox/function.php
$meta_boxes[] = array(
'id' => 'event_date_option',
'title' => __('Event options', 'mytheme'),
'pages' => array(Custom_Posts_Type_Event::POST_TYPE), // Post type
'context' => 'normal',
'priority' => 'high',
'show_names' => true, // Show field names on the left
'fields' => array(
array(
'name' => __('Event type:', 'mytheme'),
'desc' => __('Choose event type', 'mytheme'),
'id' => SHORTNAME . Widget_Event::EVENT_INTERVAL_META_KEY,
'type' => 'select',
'options' => array(
array('value'=>"n" , 'name' => __('Normal', 'mytheme')),
array('value'=>"c" , 'name' => __('Comunity', 'mytheme')),
),
),
這是展現在事件後,但我不知道如何保存時,添加新的事件或當我更新事件帖子。請幫助我,謝謝!