我可以显示来自特色类别的帖子,如下所示:
query_posts('tag=featured');
...但是可以使用下拉/选择菜单对其进行进一步排序:
<select name="">
<option value="reviews">Reviews</option>
<option value="articles">Articles</option>
<option value="interviews">Interviews</option>
</select>
...所以当选择其中一个选项时,如何修改上面发布的原始查询(现在是query_posts('tag=featured+option');
)以显示匹配的帖子?
由于
答案 0 :(得分:1)
query_posts('tag=featured,reviews');
所以(你需要消毒这个)
$tags = array('featured', $_POST['selectbox']);
$query_posts_string = 'tag=' . join(',', $tags);
query_posts($query_posts_string);