阻止 Tumblr 导航消失
我正在寻找一种方法,阻止我的 Tumblr 博客上的导航在您继续浏览页面时消失。我想要显示上一页和下一页的链接和图像。这是我到目前为止所拥有的。关于如何实现这一目标有什么想法吗?
{block:PreviousPage}
<a href="{PreviousPage}"><img src="http://static.tumblr.com/mfk3qy0/h3ilwl5wj/forward.png"></a>
{/block:PreviousPage}
{block:NextPage}
<a href="{NextPage}"><img src="http://static.tumblr.com/mfk3qy0/q1Jlwl5x5/back.png"></a>
{/block:NextPage}
I'm looking to find a way to stop the navigation on my Tumblr blog from disappearing as you go forward on a page. I want to have both previous and next page links and images to appear. Here's what I have so far. Any thoughts on how to accomplish this?
{block:PreviousPage}
<a href="{PreviousPage}"><img src="http://static.tumblr.com/mfk3qy0/h3ilwl5wj/forward.png"></a>
{/block:PreviousPage}
{block:NextPage}
<a href="{NextPage}"><img src="http://static.tumblr.com/mfk3qy0/q1Jlwl5x5/back.png"></a>
{/block:NextPage}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这些链接会消失,因为当没有下一页或上一页可供访问时,它们不会呈现。
删除下一个和上一个按钮周围的
block
声明,并用{block:Pagination}...{/block:Pagination}
包围所有四个按钮。所以无论如何,上一个和下一个链接都会呈现。The links disappear because they don't render when there isn't a next or previous page to go to.
Remove the surrounding
block
declarations for the next and previous buttons and instead surround all four with{block:Pagination}...{/block:Pagination}
. So no matter what, both the previous and next links will render.