Exclude a blog topic from a list of blog posts on HubSpot
Technical Difficulty: Advanced
Written by Stephanie O'Gay Garcia
First Published:
September 29, 2019
Last Updated:
September 29, 2019
⚠️ Note that this post hasn't been updated for at least a year and the information may be outdated, proceed with caution! (Last updated: September 29, 2019)
There are a few scenarios where you may wish to hide a specific blog topic from appearing in your posts, such as hiding blogs tagged as "featured" from your blog listings.
You can do this by using a condition that checks the topic name, like this:
{% raw %}{% for content in contents %} {% for topic in content.topic_list %} {% if topic.name != 'The Topic To Be Excluded' %} {# Add the markup for the rest of your posts here #} {% endif %} {% endfor %} {% endfor %}
If you found this helpful, buy me a coffee! ❤️