【问题标题】:wordpress search doesn't apply for my projectswordpress 搜索不适用于我的项目
【发布时间】:2015-04-09 01:11:53
【问题描述】:

我正在使用来自 themeforest.net 的 Thallasa 主题。这有点糟糕,但没关系,当我进行搜索并添加我的页面、帖子、项目项目(显然是自定义帖子类型)时,搜索找不到项目项目。它会找到项目页面、每隔一个页面或帖子,但不是单个项目。

网站是http://sisgroup.webpandas.com/

提前致谢。

【问题讨论】:

    标签: php wordpress templates


    【解决方案1】:

    将以下代码添加到您的functions.php(将帖子类型修改为您的。

    <?php
    
      function filter_search($query) {
        if ($query->is_search) {
          $query->set('post_type', array('post', 'page', 'projects'));
        }
    
        return $query;
       }
    
       add_filter('pre_get_posts', 'filter_search');
    
    ?>
    

    【讨论】:

      猜你喜欢
      • 2023-03-31
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2018-08-04
      • 2020-06-11
      • 2012-01-04
      • 2020-07-08
      相关资源
      最近更新 更多