我想在我的css网格中显示我的非特色帖子。我在方形空间查询中尝试了参数featured = false
,但它没有用。
我尝试过不同的解决方案....
<squarespace:query collection="blog" limit="4" featured="false">
{.repeated section items}
{.if starred}
<!-- skip featured items -->
{.or}
<div class="col-1-3">
<div class="module-container">
{.main-image?}
<a href="{fullUrl}">
<img {@|image-meta} />
</a>
{.end}
<div class="caption-container">
<small>{categories}</small>
<a href="{fullUrl}><h2 class="caption">{title}</h2</a>
</div>
</div>
</div>
{.end}
{.end}
<squarespace:query collection="blog" limit="4" featured="false">
{.repeated section items}
{.if starred}
<!-- skip featured items -->
{.or}
<div class="col-1-3">
<div class="module-container">
{.main-image?}
<a href="{fullUrl}">
<img {@|image-meta} />
</a>
{.end}
<div class="caption-container">
<small>{categories}</small>
<a href="{fullUrl}><h2 class="caption">{title}</h2</a>
</div>
</div>
</div>
{.end}
{.end}
但是......即使我把
语句...需要在之后我的查询被限制为帖子的总数,所以它不显示限制数量,但是更少的cos计算特色帖子我不想显示。
任何提示,请?
答案 0 :(得分:0)
有几个选择。
选项1(使用JS): 使用AJAX抓取内容并将其过滤到4个博客文章,这些文章很有用。
选项2(使用JS或CSS): 创建一个更大的查询并在第四个之后使用CSS(隐藏)或JS(删除)博客文章
选项3(带汇总块): 另一个选项是使用摘要块并为您的非功能帖子添加特定类别,并使用该类别过滤它们。