使用图像按钮进行分页 - Drupal
drupal 中的默认分页很棒,但使用了文本链接
<<first <previous 6 7 next> last>>
但我需要使用前进和后退图像按钮而不是文本链接。有人能指出我正确的方向吗?
The default pagination in drupal is great, but the text links are used
<<first <previous 6 7 next> last>>
But I need to use forward and backward image buttons instead of text links. Can anyone point me in the right direction?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据您有兴趣用图像替换分页器的哪些部分,您可以使用 CSS 背景图像,而无需覆盖主题功能。但是,在默认分页器输出中,并非所有链接都可能具有唯一的类。
也就是说,如果您使用 Drupal 的默认分页器,则可以覆盖 theme_pager 功能来添加您的图像链接。
如果您使用视图模块,则可能会使用不同的主题功能。如有疑问,您应该能够使用 Theme Developer 模块来查找正在输出的函数或模板文件您对主题感兴趣的页面部分。主题开发人员还将告诉您可以使用哪些建议来覆盖输出。
Depending on what portions of the pager you're interested in replacing with images, you may be able to use CSS background images, without having to override the theme function. However, in the default pager output, not all the links may have unique classes.
That said, if you're using Drupal's default pager, you can override the theme_pager function to add your image links.
If you're using the Views module, you may be using a different theming function. When in doubt, you should be able to use the Theme Developer module to find which function or template file is outputting the part of the page you're interested in theming. Theme Developer will also tell you what suggestions you can use to override the output.