我想知道它是否可以通过帖子标题或自定义分类法过滤。
例如:我搜索'human',我想在帖子标题和类别'human'中显示包含'human'一词的帖子。
- 如果“人类”类别不存在,则排除帖子,并且标题为“人”的帖子
- 如果存在“人类”类别并且有标题为“人”的帖子,则排除帖子(检索包含“人类”一词的所有帖子以及“人类”类别的所有帖子)
答案 0 :(得分:0)
我认为应该尝试使用此过滤器posts_where
方法1:
在functions.php文件中
<?php
add_filter( 'posts_where', 'title_like_posts_where', 10, 2 );
function title_like_posts_where( $where, &$wp_query ) {
global $wpdb;
if ( $post_title_like = $wp_query->get( 'post_title_like' ) ) {
$where .= ' AND ' . $wpdb->posts . '.post_title LIKE \'%' . esc_sql( $wpdb->esc_like( $post_title_like ) ) . '%\'';
}
return $where;
}
?>
然后传递args:
$args = array(
'post_title_like' => $str
);
$res = new WP_Query($args);
方法2:
$mypostids = $wpdb->get_col("select ID from $wpdb->posts where post_title LIKE '".$str."%' ");
$args = array(
'post__in'=> $mypostids,
'post_type'=>'post',
'orderby'=>'title',
'order'=>'asc'
);
$res = new WP_Query($args);
while( $res->have_posts() ) : $res->the_post();
// put your logic here
endwhile;
答案 1 :(得分:0)
不确定是否为此找到了解决方案,但我认为Gufran的答案并不完全是解决问题的方法。
我还需要在标题,内容,摘录或类别名称中进行搜索,因为查询不包括类别以外的匹配,因此遇到了问题。我的解决方案是执行2个查询并合并结果。
//search within title of category
$args1 = array(
'post_type' => 'post',
'post_status' => 'publish',
'posts_per_page' => 500,
'orderby' => 'title',
'order' => 'ASC',
'tax_query' => array(
array(
'taxonomy' => 'category',
'field' => 'title',
'terms' => 'human',
)
)
);
//search within title/excerpt/content
$args2 = array(
's' => 'human',
'post_type' => 'businesses',
'post_status' => 'publish',
'posts_per_page' => 500,
'orderby' => 'title',
'order' => 'ASC'
);
$query1 = new WP_Query($args1);
$query2 = new WP_Query($args2);
$loop = new WP_Query();
$loop->posts = array_merge( $query1->posts, $query2->posts );
//populate post_count count for the loop to work correctly
$loop->post_count = $query1->post_count + $query2->post_count;