I am using debut theme.
By default, there is a "back to blogs" button at the bottom of the page as shown in the first photo.
But I want to add a section above the "back to blogs" button and below the social media icons that will direct people to the next post, like the one shown in the second photo.
The section should include a call to action button "up next" and a picture of the next blog and the excerpt.
Please help!
You can do that use the {{ blog.next_article }} and {{ blog.previous_article }}. https://shopify.dev/docs/themes/liquid/reference/objects/blog#blog-next_article
{% if blog.next_article != nil %}
<a href="{{ blog.next_article.url }}">
<img src="{{ blog.next_article.image | img_url: '250x250' }}" alt="{{ blog.next_article.image.alt | escape }}">
<h3>{{ blog.next_article.title }}</h3>
{{ blog.next_article.excerpt }}
</a>
{% endif %}
{% if blog.previous_article != nil %}
<a href="{{ blog.previous_article.url }}">
<img src="{{ blog.previous_article.image | img_url: '250x250' }}" alt="{{ blog.previous_article.image.alt | escape }}">
<h3>{{ blog.previous_article.title }}</h3>
{{ blog.previous_article.excerpt }}
</a>
{% endif %}
User | Count |
---|---|
23 | |
19 | |
18 | |
17 | |
16 |