CMS Development

toddlyda
Membro

Show 1 post from a specific tag

resolver

I'm trying to simply display the most recent post in the specific tag "branding". I'm using the following but get nothing returned.

 

{% set tag_posts = blog_recent_tag_posts('default', branding, 1) %}
{% for tag_post in tag_posts %}
<div class="post-title">{{ tag_post.name }}</div>
{% endfor %}

0 Avaliação positiva
1 Solução aceita
toddlyda
Solução
Membro

Show 1 post from a specific tag

resolver

I got this to work:

 

<h4>Branding</h4>
{% set brands = blog_recent_topic_posts('default', 'branding', 1) %}
{% for brand in brands %}
<div class="row">
<div class="col-sm-4">
<img src="{{ brand.featured_image }}" alt="{{ brand.name }}">
</div>
<div class="col-sm-8">
<h3><a href="{{ brand.absolute_url }}">{{ brand.name }}</a></h3>
<p>{{ brand.post_summary|striptags|truncate(160, breakword=False, end='...') }}</p>
<a href="{{ brand.absolute_url }}">Read More</a> </li>
{% endfor %}
</div>
</div>

 

This includes my extra markup. Looks like I was needing to use blog_recent_topic_posts instead.

Exibir solução no post original

4 Respostas 4
CClaro
Participante

Show 1 post from a specific tag

resolver

Thanks @toddlyda!

0 Avaliação positiva
toddlyda
Solução
Membro

Show 1 post from a specific tag

resolver

I got this to work:

 

<h4>Branding</h4>
{% set brands = blog_recent_topic_posts('default', 'branding', 1) %}
{% for brand in brands %}
<div class="row">
<div class="col-sm-4">
<img src="{{ brand.featured_image }}" alt="{{ brand.name }}">
</div>
<div class="col-sm-8">
<h3><a href="{{ brand.absolute_url }}">{{ brand.name }}</a></h3>
<p>{{ brand.post_summary|striptags|truncate(160, breakword=False, end='...') }}</p>
<a href="{{ brand.absolute_url }}">Read More</a> </li>
{% endfor %}
</div>
</div>

 

This includes my extra markup. Looks like I was needing to use blog_recent_topic_posts instead.

MMorisette
Participante

Show 1 post from a specific tag

resolver

You just saved me a bunch of time. Much appreciated.

sharonlicari
Gerente da Comunidade
Gerente da Comunidade

Show 1 post from a specific tag

resolver

Thank you for sharing this @toddlyda 🙂


Did you know that the Community is available in other languages?
Join regional conversations by changing your language settings !




0 Avaliação positiva