我想阻止wordpress保存年,月和日数组。我使用JavaScript将隐藏输入中的3合1组合成一个值,因此我不需要将3存储在数据库中。我该怎么做?
$meta_box = array(
'id' => 'global-releasedate',
'title' => 'Releasedate',
'page' => 'films',
'context' => 'normal',
'priority' => 'high',
'fields' => array(
array(
'name' => '',
'id' => $prefix . 'airdate',
'type' => 'hidden',
'std' => ''
),
array(
'name' => 'Year',
'id' => $prefix . 'year',
'type' => 'select',
'options' => $years,
),
array(
'name' => 'Month',
'id' => $prefix . 'month',
'type' => 'select',
'options' => $months,
),
array(
'name' => 'Day',
'id' => $prefix . 'day',
'type' => 'select',
'options' => $days,
),
));
答案 0 :(得分:0)
解决方案实际上是删除它们或在functions.php文件上注释它们。如果您删除它们,它们将不会从帖子中删除,它们将不再为用户显示,这就是您所需要的。