好的,这是我想出并在我的网站上测试过的东西。
请注意,这是非常原始的(即没有样式),您可能需要为其添加一些弹性,以防万一您得到一些意想不到的结果,但恐怕这完全取决于您。
这是搜索表格。我没有添加,action
因为我不知道您要将表单重定向到哪里。但是,默认情况下,您将被引导回同一页面,因此您可以在那里查询帖子。
<form method="POST">
<h3>Search for posts</h3>
<?php
$taxonomies[] = get_taxonomy('author');
$taxonomies[] = get_taxonomy('title');
$taxonomies[] = get_taxonomy('editor');
$options = array();
if(!empty($taxonomies)) : foreach($taxonomies as $taxonomy) :
if(empty($taxonomy)) : continue; endif;
$options[] = sprintf("\t".'<option value="%1$s">%2$s</option>', $taxonomy->name, $taxonomy->labels->name);
endforeach;
endif;
if(!empty($options)) :
echo sprintf('<select name="search-taxonomy" id="search-taxonomy">'."\n".'$1%s'."\n".'</select>', join("\n", $options));
echo '<input type="text" name="search-text" id="search-text" value=""></input>';
echo '<input type="button" name="search" id="search" value="Search"></input>';
endif;
?>
</form>
现在,在你输出你的帖子之前添加这个 -
if(!empty($_POST['search-text'])) :
$args = get_search_args();
query_post($args);
endif;
最后,将此添加到您的function.php
,以便您可以获取相关的$args
function get_search_args(){
/** First grab all of the Terms from the selected taxonomy */
$terms = get_terms($_POST['search-taxonomy'], $args);
$needle = $_POST['search-text'];
/** Now get the ID of any terms that match the text search */
if(!empty($terms)) : foreach($terms as $term) :
if(strpos($term->name, $needle) !== false || strpos($term->slug, $needle) !== false) :
$term_ids[] = $term->term_id;
endif;
endforeach;
endif;
/** Construct the args to use for quering the posts */
$args = array(
'order' => ASC,
'orderby' => 'name',
'post_status' => 'publish',
'post_type' => 'post',
'tax_query' => array(
array(
'taxonomy' => $_POST['search-taxonomy'],
'field' => 'term_id',
'terms' => $term_ids,
'operator' => 'IN'
)
)
);
return $args();
}