admin管理员组文章数量:1130349
This code is working fine but when I select the only Bathroom Type It's not working. Please help me so that my multiple search system can be work properly.
$Bathroom_Type = implode(',', $_POST['room_type']);
$style_type = implode(',', $_POST['style_type']);
$args = array('post_type' => 'MyGallery',
'meta_query'=> array(
'relation' => 'AND',
array('key' => 'Room',
'value' => $Bathroom_Type,
'compare' => 'IN'),
array('key' => 'Style',
'value' => '$style_type',
'compare' => 'IN')
)
);
//Show Result
$query = new WP_Query($args);
if ( $query->have_posts() )
{
while ( $query->have_posts() )
{
$query->the_title();
echo the_title();
}
}
This code is working fine but when I select the only Bathroom Type It's not working. Please help me so that my multiple search system can be work properly.
$Bathroom_Type = implode(',', $_POST['room_type']);
$style_type = implode(',', $_POST['style_type']);
$args = array('post_type' => 'MyGallery',
'meta_query'=> array(
'relation' => 'AND',
array('key' => 'Room',
'value' => $Bathroom_Type,
'compare' => 'IN'),
array('key' => 'Style',
'value' => '$style_type',
'compare' => 'IN')
)
);
//Show Result
$query = new WP_Query($args);
if ( $query->have_posts() )
{
while ( $query->have_posts() )
{
$query->the_title();
echo the_title();
}
}
本文标签: wp queryNeed Help For WPQuery
版权声明:本文标题:wp query - Need Help For WPQuery 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:https://it.en369.cn/questions/1749158993a2325081.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。


发表评论