在'特色'上显示特定标签部分而不是最新的帖子

时间:2018-04-22 14:47:08

标签: html blogger featured

我在我的网站上使用博客模板而我正在尝试更改精选部分,而不是显示我想要显示特定标签的最新帖子。

我对此并不了解,但我相信这是"控制"博客的特色部分:

<div class='ct-wrapper' id='featured-posts-section'>
    <div class='featured-post padding clearfix'>        
        <script type='text/javaScript'>
            document.write(&quot;&lt;script src=\&quot;/feeds/posts/default?max-results=&quot;+featured_numposts+&quot;&amp;orderby=published&amp;alt=json-in-script&amp;callback=sliderposts\&quot;&gt;&lt;\/script&gt;&quot;);
        </script>                                                                                                           
    </div>
</div>

感谢您的支持!

这是网站链接:https://www.santaclarabookstore.com.br/

1 个答案:

答案 0 :(得分:0)

您需要更改Feed网址,以指向要在特色部分中显示其帖子的特定Label的Feed。我们假设,您要显示的标签名为 labelName 。然后上面的代码将以这种方式改变(只有粗体部分被更改) -

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