Pagination 如何在标签页中包含分页

Pagination 如何在标签页中包含分页,pagination,tags,label,blogs,blogger,Pagination,Tags,Label,Blogs,Blogger,我正在使用blogger.com创建一个博客。当我点击标签(或标签)时,我会返回主页,而相关的标签文章应该加载。理想情况下,我想加载每页最多20篇文章,并分页以查看更多内容。 我的密码是 <b:widget id='HTML44' locked='false' title='Label' type='HTML'> <b:includable id='main'> <b:if cond='data:blog.url != data:blog.homepageUrl'&

我正在使用blogger.com创建一个博客。当我点击标签(或标签)时,我会返回主页,而相关的标签文章应该加载。理想情况下,我想加载每页最多20篇文章,并分页以查看更多内容。 我的密码是

<b:widget id='HTML44' locked='false' title='Label' type='HTML'>
<b:includable id='main'>
<b:if cond='data:blog.url != data:blog.homepageUrl'>
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<!-- only display title if it's non-empty -->
<b:if cond='data:blog.searchLabel != &quot;&quot;'>
<h2 class='title' id='tit_h2'><img border='0' src='http://3.bp.blogspot.com/-uqDJqtNSkfY/UyElenxHsDI/AAAAAAAAAGk/4QaOO27tY0w/s1600/Heading+1.png' style='margin-top:-2px; float:left; margin-right:10px;'/><data:blog.searchLabel/></h2>
<div class='eggTray'>
<script src='http://helplogger.googlecode.com/svn/trunk/listbadge.js'>{&quot;pipe_id&quot;:&quot;1a6640e2a78b2c6e736f2220529daae5&quot;,&quot;_btype&quot;:&quot;list&quot;,
 &quot;pipe_params&quot;:{&quot;URL&quot;:&quot;http://www.foxbet.gr/feeds/posts/default/-/<data:blog.searchLabel/>&quot;},
&quot;hideHeader&quot;:&quot;false&quot;,&quot;height&quot;:&quot;auto&quot;,&quot;count&quot;: 20  }</script>
<div class='ycdr' style='font-family: arial, sans-serif; font-size: 9px;'><a href='http://helplogger.blogspot.com/2012/05/recent-posts-widget-with-thumbnails-for.html' target='_blank' title='Grab this widget'>Recent Posts Thumbnails</a> <a href='http://helplogger.blogspot.com/' target='_blank'>Blogger Widget</a></div><noscript>Your browser does not support JavaScript!</noscript></div>
<style type='text/css'>
.ybi{display:block;}
.eggTray {margin:10px 0px;padding:0px;}
.ybr li  {border-bottom:0px #cccccc dotted; padding:0px 0px 10px 0px!important;}
.pipesTitle {padding-top:0px;}
.pipesDescription {display:true;}
.ycdr {display:none; background:transparent url(http://3.bp.blogspot.com/-oxTuqVj1ziA/T6P6wtxqsgI/AAAAAAAACBE/wWR0bb2gfuE/s1600/logo.png) 0px 0px no-repeat; padding: 1px 0px 0px 19px; height:14px; margin: 4px 0px 0px 0px;line-height:14px;}
.ycdr, .ycdr a {color:#999999;}
.widget .popular-posts ul {padding-left:0;}
.pipesThumbnail{width: 70px !important; height: 50px !important;}
.pipesThumbnail img{width: 100% !important; height: auto !important;}
</style>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
</b:if> </b:if></b:if>
</b:includable>
</b:widget>

{“管道id”:“1a6640e2a78b2c6e736f2220529daae5”,“管道类型”:“列表”,
“管道参数”:{“URL”:”http://www.foxbet.gr/feeds/posts/default/-/"},
“隐藏头”:“假”,“高”:“自动”,“计数”:20}
您的浏览器不支持JavaScript!
.ybi{display:block;}
.eggTray{边距:10px 0px;填充:0px;}
.ybr li{边框底部:0px#cccccc虚线;填充:0px 0px 10px 0px!重要;}
.pipesTitle{填充顶部:0px;}
.pipesDescription{display:true;}
.ycdr{显示:无;背景:透明url(http://3.bp.blogspot.com/-oxTuqVj1ziA/T6P6wtxqsgI/AAAAAAAACBE/wWR0bb2gfuE/s1600/logo.png)0px 0px无重复;填充:1px 0px 0px 19px;高度:14px;边距:4px 0px 0px 0px;行高:14px;}
.ycdr、.ycdr a{color:#999999;}
.widget.popular posts ul{左填充:0;}
.pipesThumbnail{宽度:70px!重要;高度:50px!重要;}
.pipesThumbnail img{宽度:100%!重要;高度:自动!重要;}

考虑到模板中有分页脚本,请任何人帮助我

现在,为了使分页脚本也能在标签上工作,您需要在URL中指定参数

示例:

http://yourblog.blogspot.com/search/label/posts?&max-results=20
此处的
帖子
将替换为您的标签名称

&
参数也将启用标签分页

max results=20
最多可加载20篇文章(可根据您的选择进行更改)

希望这有帮助