Blog, Website & Page Publishing

jaala
Membre

Blog topic suppression

Résolue

I am trying to figure out if there is a way to suppress a blog topic from appearing on the homepage of my blog. So, anytime I submit a blog post in that particular category it does not show up on the most recent blog posts. Is this possible?

0 Votes
1 Solution acceptée
Jsum
Solution
Conseiller clé

Blog topic suppression

Résolue

@jaala,

 

This is really late so maybe won't be helpful but in your blog listing mark you have a for loop:

{% for content in contents %}

{% endfor %}

This where each of your blog posts on your listing page are created. You can add an unless statement to check if the blog has your topic.

{% for content in contents %}
    {% unless 'topic-to-hide' in content.topic_list|map('name') %}

       {# blog item markup #}

    {% unless %}
{% endfor %}

Now the blog for loop will put out all blogs unless the topic is the topic set in the if statement. 

 

 

 

Voir la solution dans l'envoi d'origine

0 Votes
1 Réponse
Jsum
Solution
Conseiller clé

Blog topic suppression

Résolue

@jaala,

 

This is really late so maybe won't be helpful but in your blog listing mark you have a for loop:

{% for content in contents %}

{% endfor %}

This where each of your blog posts on your listing page are created. You can add an unless statement to check if the blog has your topic.

{% for content in contents %}
    {% unless 'topic-to-hide' in content.topic_list|map('name') %}

       {# blog item markup #}

    {% unless %}
{% endfor %}

Now the blog for loop will put out all blogs unless the topic is the topic set in the if statement. 

 

 

 

0 Votes