即使我的一个帖子的标题中包含单词banana,我也没有使用以下代码获得任何结果。我启用了这些自定义帖子类型并构建了索引。
$args = array(
'post_type' => $search_type,
'posts_per_page' => $per_page,
'paged' => $requested_page
);
$args['s'] = 'banana';
global $wp_query;
$display_cures = new WP_query($args);
$display_cures->query_vars = $wp_query->query_vars;
relevanssi_do_query($display_cures);
while($wp_query->have_posts()) : $wp_query->the_post();
...
我一直在尝试让这个插件全天工作。感谢任何和所有帮助
答案 0 :(得分:2)
试试这个
$ display_cures对象包含帖子详细信息
if ( $display_cures->have_posts() ) {
while ( $display_cures->have_posts() ) {
$display_cures->the_post();
echo get_the_title();
//
// Post Content here
//
} // end while
} // end if