【发布时间】:2018-02-16 05:41:32
【问题描述】:
我使用过 ACF 复选框字段。现在我要过滤查询是这个复选框字段。然后我试图从前端搜索。但它没有显示任何结果。字段 meta_key 是 cotf。
acf fields screenshot 1
<form action="" id="" method="POST">
<input type="checkbox" name="ap_features[]" value="air_conditioning">
<input type="checkbox" name="ap_features[]" value="washer_connections">
<input type="checkbox" name="ap_features[]" value="refrigerator">
<input class="btn btn-lg btn-success" type='submit' id="" name="submit" value="SEARCH">
</form>
PHP
<?php
if(isset($_POST['submit'])){
$afeatures = $_POST['ap_features'];
$args = array(
'numberposts' => -1,
'post_type' => 'apartment',
'meta_query' => array(
'relation' => 'AND',
array(
'key' => 'cotf',
'value' => array($afeatures),
'compare' => 'IN'
)
)
);
}
?>
我也尝试过这段代码,但它不起作用:
$meta_query = array('relation' => 'OR');
foreach ($_POST['ap_features'] as $value) {
$meta_query[] = array(
'key' => 'cotf',
'value' => '"'.$value.'"',
'compare' => 'LIKE'
)
}
$args = array(
'numberposts' => -1,
'post_type' => 'restaurant',
'meta_query' => $meta_query
);
【问题讨论】:
标签: php wordpress filtering advanced-custom-fields meta