WP高级搜索:分类法字段的默认值

时间:2015-08-28 14:03:49

标签: php wordpress wordpress-plugin

我正在使用WP高级搜索来搜索自定义帖子。它包含4个字段,一个用于搜索帖子的标题,另外两个用于将搜索结果限制为特定的元数据,另一个用于将结果限制为特定的自定义分类:

[...]
$args['fields'][] = array('type' => 'taxonomy',
'label' => __('Discipline:', CORE_THEME_NAME),
'taxonomy' => 'course-discipline',
'format' => 'select',
'class' => 'searchselect',
'operator' => 'IN');
[...]

我现在要做的是在顶部为分类标准添加一个空的默认选择选项。有谁知道如何以最简单的方式做到这一点?

1 个答案:

答案 0 :(得分:0)

Exemplo!

$args['fields'][] = array(
    'allow_null' => 'Mês',
    'type' => 'date',
    'date_type' => 'month',
    'format' => 'select',
);