我需要在post_title和category
上使用LIKE执行WP_Query此query_post无效
query_posts(
array(
'post_type' => 'add_buying',
'like' => $keywords,
'posts_per_page' => 5,
'taxonomy' => 'add_country',
'term' => 'drawing'
));
答案 0 :(得分:6)
检查this url并更改like
参数。
query_posts( array(
'post_type' => 'add_buying',
's' => $keywords,
'posts_per_page' => 5,
'taxonomy' => 'add_country',
'term' => 'drawing'
));
答案 1 :(得分:5)
将您的第二个参数更改为' s'而且我认为它会起作用:
$args = array(
'post_type' => 'post',
's' => $search_term,
'post_status' => 'publish'
);
$wp_query = new WP_Query($args);
祝你好运
答案 2 :(得分:0)
标题(字符串)-使用帖子标题(在4.4版中可用)。
$args = array(
'post_type' => 'post',
'title' => $title,
'post_status' => 'publish'
);
$wp_query = new WP_Query($args);