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

php – 如何在Drupal 8中的搜索结果页面上显示结果数?

我正在尝试在Drupal 8的结果页面显示搜索结果计数,我想显示类似于:search_word的23个结果.

我使用认的Drupal搜索,并使用item-list-search-results.html.twig作为模板文件显示结果,但是我找不到可用变量中的搜索结果计数,任何想法怎么能找到这个值?

解决方法:

Drupal 8中的结果计数没有变量.

1)使用以下代码添加此变量(将此代码添加到MYTHEME.theme):

function MYTHEME_preprocess_item_list(&$variables) {

    $total = null;
  // get the total number of results from the $GLOBALS
  if(isset($GLOBALS['pager_total_items'])){
    $total = $GLOBALS['pager_total_items'][0];
  }

  $variables['count_items'] = $total;
}

2)然后你可以在item-list中使用{{count_items}} – search-results.html.twig:

<div> {{ count_items }} results for search_word </div>

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

相关推荐