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;
}
Run Code Online (Sandbox Code Playgroud)
2)然后你可以在item-list中使用{{count_items}} - search-results.html.twig:
<div> {{ count_items }} results for search_word </div>
Run Code Online (Sandbox Code Playgroud)
归档时间: |
|
查看次数: |
1510 次 |
最近记录: |