0

我想阻止 wordpress 保存年、月和日数组。我使用 JavaScript 将隐藏输入中的 3 合为一个值,因此我不需要将 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,
        ),
    ));
4

1 回答 1

0

解决方案实际上是删除它们或在functions.php 文件中注释它们。如果您删除它们,它们不会从帖子中删除,它们将不再对用户可见,这正是您所需要的。

于 2012-04-22T16:13:11.783 回答