我正在搜索wordpress我想搜索多个类别的文本。这是我的代码
<form method="post" action="<?php bloginfo('home');?>/?ptype=catsearch" >
<input type="text" name="searchtext" size="40" />
<h2><?php _e('Categories:'); ?></h2>
<select name="category[]" multiple='multiple'>
<option value=""><?php echo esc_attr(__('Please Select Your Choice')); ?></option>
<?php $categories= get_categories('show_count=0&orderby=name&echo=0&hierarchical=true&depth=1&taxonomy=category&exclude=1');
foreach ($categories as $category) {
$option = "<option value=$category->term_id>";
$option .= ucfirst($category->cat_name);
$option .= '</option>';
echo $option;
}
?>
</select>
<input type="submit" id="searchsubmit" value="Search" name="submit"/>
</form>
当这个foms在catsearch.php文件上发布时,我在数组中获取所有categoryid并创建url,请参阅下面的代码。如果选择了多个类别,则会创建类似http://abcd.com/?cat=3&cat=7&cat=8&s=dasdasDS
的网址。在这种情况下,它仅在最后一个cat id中搜索文本。我认为这会对catids产生影响。我需要在任何类别中找到我的搜索文本,然后显示所有帖子。
$categoryids = $_POST['category'];
echo 'count is ---' .count($categoryids);
if($categoryids)
{
foreach($categoryids as $categoryid)
{
$cat.= 'cat='.$categoryid.'&';
}
echo $cat = trim($cat, '&');
echo '<br />';
$url .= '?'.$cat;
}
if($_POST['searchtext'])
{
echo 'searchtext---'. $_POST['searchtext'];
echo '<br />';
$url .= '&s='.$_POST['searchtext'];
}
<META http-equiv="refresh" content="1;URL=<?php echo get_bloginfo('url')."$url"; ?>">
答案 0 :(得分:2)
当你做这样的事情时
cat=3&cat=7&cat=8
您不断重新定义$ _GET ['cat']的值。因此,它最终会成为最后一个 - 8。
在wordpress中查询多个类别的语法是使用逗号
cat=3,7,8