自定义 Codeigniter 分页
有没有办法让 codeigniter 只显示“旧文章”和“新文章”,而不是显示页码和所有其他内容?
Is there a way that I can make codeigniter only display "« Older Articles" and "Newer Articles »" instead of displaying page numbers and all the other stuff?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有两种方法可以实现此目的:
如果你可以修改 CI' 分页类,那就这么做,但我不推荐这样做
因为您可能在其他地方出于相同的目的需要它。
如果可以的话,更好的选择是为此创建自己的库。如果你不能这样做,你可以创建自己的函数来实现这一点。
还要检查以确保互联网丛林中的某个地方可能已经存在这样的东西。
There can be two ways you can achieve that:
If you can modify the CI' pagination class, go with that, but I won't recommend that
because you will need it with same purpose elsewhere possibly.
A better option is to create your own library for that if you can. If you can not do so, you are can make your own functions to achieve that.
Also check to make sure that there might be such thing available already somewhere on the internet's jungle.