首页 > 解决方案 > 博客上的 flexslider - 更改源

问题描述

我想更改 Blogger 上 Flexslider 中出现的图像/帖子的来源。现在,它显示“最近的帖子”,但我只想显示具有特定标签/类别的帖子。我尝试处理以下代码,但不知道如何更改...

<script>
document.write(&quot;&lt;script src=\&quot;/feeds/posts/default?max-results=&quot;+numposts1+&quot;&amp;orderby=published&amp;alt=json-in-script&amp;callback=showrecentposts1\&quot;&gt;&lt;\/script&gt;&quot;);
</script>   

标签: bloggerflexslider

解决方案


要按标签获取帖子提要,请使用此路径/feeds/posts/default/-/labelName

替换labelName为有效的标签名称。

<script>
document.write(&quot;&lt;script src=\&quot;/feeds/posts/default/-/labelName?max-results=&quot;+numposts1+&quot;&amp;orderby=published&amp;alt=json-in-script&amp;callback=showrecentposts1\&quot;&gt;&lt;\/script&gt;&quot;);
</script>

推荐阅读