我正在尝试 - 并且失败 - 使用Wordpress'query_posts
提交的表单中的值构建新的wp_dropdown_categories
查询。
以下是表格:
<form action="<?php bloginfo('url')/filter.php" method="GET">
<?php wp_dropdown_categories('child_of=1&name=colour'); ?>
<?php wp_dropdown_categories('child_of=2&name=type'); ?>
<input type="submit" name="submit" value="view" />
</form>
其中呈现以下HTML(简化了一点以节省空间)
<form action="http://localhost:8888/project/wp-content/themes/project/filter.php" method="GET">
<select name='colour' id='colour' class='postform' >
<option value="3">Red</option>
<option value="4">Blue</option>
<option value="5">Blue</option>
</select>
<select name='type' id='colour' class='postform' >
<option value="6">Small</option>
<option value="7">Medium</option>
<option value="8">Large</option>
</select>
<input type="submit" name="submit" value="view" />
</form>
这是filter.php
文件内容
<?php
$args = array(
'category__in' => array(HELP HERE);
query_posts( $args );
// The Loop
while ( have_posts() ) : the_post();
echo '<li>';the_title();
echo '</li>';
endwhile;
// Reset Query
wp_reset_query();
?>
这里最重要的因素是这需要灵活;换句话说,如果只使用其中一个选项,则查询仍应有效。
我认为我大部分时间都在那里,它只是根据我所选择的任何选定选项的值构建category__in => array()
的数组。
感谢您的帮助!
答案 0 :(得分:0)
这似乎现在有效。
<?php
$args = array(
'category__in' => array($_GET['colour'], $_GET['type'])
);
query_posts( $args );
// The Loop
while ( have_posts() ) : the_post();
echo '<li>';the_title();
echo '</li>';
endwhile;
// Reset Query
wp_reset_query();
?>