blogspot.com:如何一次显示所有帖子?
我正在 blogspot.com 上阅读一些博客,我想知道: 是否可以更改博客的 URL,使其显示所有帖子? 我的意思是,它将显示所有博客条目,而无需一遍又一遍地单击“旧帖子”。
I'm reading some blogs on blogspot.com and I was wondering:
is it possible to change a blog's URL that it will display ALL posts?
I mean that it will show all blog entries without having to click "older posts" over + over again.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的。
考虑这个博客:
http://rehmansaad.blogspot.com/
当您将鼠标悬停在“旧帖子”链接上时,您获取此链接:
http://rehmansaad.blogspot.com/search?updated-max=2015-04-13T02:46:00-04:00&max-results=20
正如你所看到的,它说 max-results =20,目前您每页看到 20 个帖子,因此作为聪明人,您会查看所有标签,计算每年的帖子数量,然后将其总计。假设它们是 213。然后您手动输入此网址:
http://rehmansaad.blogspot.com /search?max-results=213
但是当您转到该链接时,您会看到只显示 55 篇帖子,并且仍然有一个“较早的帖子”按钮。这是因为 Blogger 一度不提供大于 1 MB 的页面,在上述博客中,55 篇帖子的大小为 1 MB。因此,您可以单击“较早的帖子”链接,查看接下来的 55 个帖子。因此,您可以在大约 4 页 (4 MB) 内看到整个博客。
这已经是你所能达到的最接近的结果了:)
Yes.
Consider this blog:
http://rehmansaad.blogspot.com/
When you hover over the Older Posts link, you get this link:
http://rehmansaad.blogspot.com/search?updated-max=2015-04-13T02:46:00-04:00&max-results=20
And as you see, it says max-results=20, and currently you're seeing 20 posts per page, so being the smart guy that you are, you look at all the labels, and count the number of posts there are in every year, and total them. Let's say they are 213. Then you manually this url:
http://rehmansaad.blogspot.com/search?max-results=213
But when you goto that link, you see that only 55 posts are displayed, and there's still a Older Posts button. That's because Blogger at one time doesn't serve pages larger than 1 MB, in case of the said blog 55 posts made 1 MB. So you can click on the Older Posts link, and see the next 55 posts. Hence in about 4 pages (4 MB) you can see the entire blog.
This is as close as you get to it :)
您无法显示所有帖子。
您可以选择在每个页面上显示 N 个帖子或 M 天的帖子。但是,每页的帖子数量限制为 500 篇。
这些选项可在“设置”->“格式”选项卡上找到
You can't show all posts.
You can select to show N number of posts or M days of postings on each page. A limit of 500 posts per page is enforced however.
These options are available on the Settings->Formatting tab
好的。这是代码,将其添加到您的 HTML/Javascript 框中,您将在博主博客的末尾看到导航框。 (如果您的博客已经有导航按钮,请保留它)
现在单击“下一步”以显示新页面,现在查看地址栏,您可以在 url max-results=5 中查看此文本,将其更改为多少您需要在一页上发帖
或者只需编辑代码,
将 5 和 2 更改为您需要显示帖子的数量。
这对我有用。尝试一下
ok. here is code add it to your HTML/Javascript box with this you will see the Navigation box at the end of your blogger blog. (if your blog already have navigation button them leave it)
Now click on next to show new pages, Now see the address bar where you look this text in url max-results=5 change it to how much you need post on one page
Or simply edit the code
Change 5 and 2 to how much you need to show post.
It works on me. Try that