微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

php – 将结果添加到WordPress搜索结果中

我想在wordpress搜索结果添加/注入/追加额外的结果.

目前wordpress只允许您“调整”在其自己的数据库上执行的查询,但不允许您修改(或在wordpress术语中,过滤)结果数组.

即:如果在wordpress中我搜索“马铃薯”一词,所有与此术语相关的帖子都会回来.我想将通过不同服务获得的结果包含在wordpress结果集中.

只是为了澄清,我从第三方API调用中得到了我的结果.不是来自wordpress数据库.

有没有人知道如何做到这一点?

编辑:最好这需要在我的wordpress插件中进行,而无需更改搜索模板.

解决方法:

您可以使用pre_get_posts添加/编辑搜索结果,而无需更改搜索模板.

排除页面

排除搜索结果中的网页.可以通过仅显示帖子的结果来创建限制搜索结果的操作挂钩.

以下示例演示了如何执行此操作:

function search_filter($query) {
  if ( !is_admin() && $query->is_main_query() ) {
    if ($query->is_search) {
      $query->set('post_type', 'post');
    }
  }
}

add_action('pre_get_posts','search_filter');

搜索结果中包含自定义帖子类型

function search_filter($query) {
  if ( !is_admin() && $query->is_main_query() ) {
    if ($query->is_search) {
      $query->set('post_type', array( 'post', 'movie' ) );
    }
  }
}

add_action('pre_get_posts','search_filter');

包括自定义/ API结果

function search_filter() {
    if ( is_search() ) {
        // Do your API call here
        // Save retrieved data in your wordpress
        // This will also help to you avoid api call for repeated queries.
        $post_id = wp_insert_post( $post, $wp_error ); // wp_insert_post() // Programatically insert queries result into your wordpress database
        array_push( $query->api, $post_id );
    }
}
add_action('pre_get_posts','search_filter');    
function have_posts_override(){
    if ( is_search() ) {
        global $wp_query;
        $api_post = $wp_query->api;
        foreach ($api_post as $key) {
        // This will enable you to add results you received using API call
        // into default search results.
            array_push($wp_query->posts, $key); 
        }
    }
}
add_action( 'found_posts', 'have_posts_override' );

参考:

> Exclude_Pages_from_Search_Results
> Include_Custom_Post_Types_in_Search_Results

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐