我使用wp_query查询来自某个分类的帖子如下:
$location=urldecode($_GET['location']);
$property_type=urldecode($_GET['propertyType']);
query_posts(array(
'numberposts'=>-1,
'post_type'=>'property',
'property-type'=>$property_type,
'location'=>$location,
'meta_query'=>array(
array('key'=>'wpcf-price','value'=>$amount[0],'compare'=>'>=','type' => 'numeric'),
array('key'=>'wpcf-price','value'=>$amount[1],'compare'=>'<=','type' => 'numeric')
),
'suppress_filters'=>false
));
除了这个字符串(
)之外,它大部分时间都按预期工作תל - אביביפו
似乎减号以某种方式弄乱了搜索, 我怎么能解决这个问题?
有没有办法在这里使用“LIKE”语句?
答案 0 :(得分:0)
发现问题,
我使用$ term-&gt;名称而不是$ teadm-&gt; slug来查询位置元素,这解决了这个问题。