我在 Hubspot COS 网站上工作,我需要能够对博客文章运行自定义查询,并在主页的模块和网站的侧边栏中显示这些博客文章的列表。
我从哪里开始?我曾尝试使用 RSS 模块,但它不足以满足我的需求。
如果您有任何建议,将不胜感激。谢谢!
我在 Hubspot COS 网站上工作,我需要能够对博客文章运行自定义查询,并在主页的模块和网站的侧边栏中显示这些博客文章的列表。
我从哪里开始?我曾尝试使用 RSS 模块,但它不足以满足我的需求。
如果您有任何建议,将不胜感激。谢谢!
我可以blog_recent_topic_posts()
用来解决这个问题:
<div class="row-fluid">
{% set posts = blog_recent_topic_posts('3904474513', 'featured-resource', 3) %}
{% for post in posts %}
{% set topics = post.topic_list %}
<div class="span4 resource">
<div class="resource-icon{% for topic in topics %} {{ topic.slug }}{% endfor %}"></div>
<img src="{{ post.featured_image }}" alt="{{ post.name }}">
<div class="resource-text">
<p class="r-type">
{% for topic in topics %}
{% unless topic == 'featured resource' %}
{{ topic.name }}
{% endunless %}
{% endfor %}
</p>
<h3 class="r-title"><a href="{{ post.absolute_url }}">{{ post.name }}</a></h3>
</div>
</div>
{% endfor %}
</div>