在页面的顶部和底部显示分页器(由“视图”生成)


7

我创建了一个视图并为其设置了寻呼机。我显示在页面底部。有什么办法可以在页面的底部和顶部显示它?

Answers:


21

views-view.tpl.php模板文件从模块的theme子目录复制Views到您的主题文件夹,对其进行编辑,并复制负责打印寻呼机的代码片段:

  <?php if ($pager): ?>
    <?php print $pager; ?>
  <?php endif; ?>

到你想要的地方。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.