我想设置一个小部件来按类别过滤我的帖子。比方说,我确实有两个不同的类别,“国家”和“逗留时间”以及子类别。这是我所拥有的一个例子:
我想要的是按多个类别过滤帖子。因此,如果用户正在检查国家“老挝”和“2-4 天”的停留时间,我只想检索已附加“老挝”类别和“2-4 天”类别的帖子。
我尝试使用查询多个分类法插件。但是,这个插件正在检索所有“老挝”类别的帖子和所有停留时间为“2-4天”的帖子。
我知道,我可以使用此查询过滤帖子,但是,我需要一些帮助才能使用提交按钮创建此小部件。另外,我想自定义它以删除父类别并将它们显示为标题(删除“国家”和“逗留时间”的复选框并向它们添加特定的类)?
工作查询:
<?php // cat 42=Laos cat 57=2-4Days
<?php $my_query_1 = new WP_query(array('category__and' => array(42,57))); ?>
<?php while ($my_query_1->have_posts()) : $my_query_1->the_post(); ?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to
<?php the_title(); ?>"><?php the_title(); ?><?php the_excerpt(); ?></a>
<?php endwhile; ?>
感谢您的帮助
我做了什么 :
- 我创建了一个新的侧边栏,我想在其中添加新表单
我创建了这个新侧边栏的模板“sidebar-filters.php”。这是我里面的代码。
<div id="secondary" class="widget-area" role="complementary"> I'm the sidebar filters <?php $current_countries = get_query_var('countries'); $current_stays = get_query_var('stays'); $countries = get_categories('child_of=62'); $stays = get_categories('child_of=63'); ?> <form action="<?php the_permalink(); ?>" id="filterForm" method="post"> <ul> <li> <label><b>Countries</b></label> </li><br/> <?php foreach ($countries as $country) { // var_dump($country->cat_ID); // var_dump($country->name); echo sprintf('<li><input type="checkbox" name="countries[]" id="checkbox_%s" value="%s" %s',$country->name , $country->cat_ID, set_checked($current_countries, $country)); echo sprintf('/><label for="checkbox_%s">%s</label></li>',$country->name,$country->name ); } ?> </ul><br/><br/> <ul> <li> <label><b>Length of stay</b></label> </li><br/> <?php foreach ($stays as $stay) { // var_dump($stay->cat_ID); // var_dump($stay->slug); echo sprintf('<li><input type="checkbox" name="stays[]" id="checkbox_%s" value="%s" %s',$stay->slug , $stay->cat_ID, set_checked($current_stays, $stay)); echo sprintf('/><label for="checkbox_%s">%s</label></li>',$stay->slug,$stay->name ); } ?> </ul><br/><br/> <ul> <li> <button type="submit">Send email</button> </li> </ul> <input type="hidden" name="submitted" id="submitted" value="true" /> </form>
这是我在 function.php 中的代码
功能 my_query_vars($vars) { array_push($vars, 'countries', 'stays'); 返回 $vars; } add_filter('query_vars', 'my_query_vars');
功能 set_checked($arr, $value) { $checked = ''; if (!empty($arr) && in_array($value, $arr)) $checked = 'checked'; 返回$检查;}
function my_query($query)
{
// You can use is_archive() or whatever you need here
if ($query->is_main_query() && is_search()) {
$cat_and = array();
foreach (array('countries', 'stays') as $variable) {
$categories = get_query_var($variable);
if (!empty($categories)) {
$cat_and = array_merge($cat_and, $categories);
}
}
if (!empty($cat_and)) $query->set('category__and', $cat_and);
}
}
add_action('pre_get_posts', 'my_query');
But, I'm retrieving nothing for the moment, what do I am doing wrong?