我试图通过一些限制让Wordpress在Elastic中搜索:
$args[\'ep_integrate\'] = true;
add_action( \'pre_get_posts\', function( $query ) {
// what to write here to search in "title", "excerpt", "content" only?
});
$query = new WP_Query($args);
我正在尝试修改查询:
$args[\'ep_integrate\'] = true;
add_action(\'posts_where\', function($where) {
return \' posts.ID = 234234\';
// return \' post_title LIKE "%paff%" OR post_contents LIKE "%paff%" OR post_excerpt LIKE "%paff%";
}, 10,2);
$query = new WP_Query($args);
但就像我没有设置任何内容一样,它仍然返回一组结果,而不是一个。