126

Product support

Get help in the plugin support forum.

  • Added on Mar 4, 2019
  • Current version: 1.0.1
  • Platform Compatibility
    v3.x not tested
    v2.x not tested
    v1.x use latest
  • License: Regular / Extended
  • Created by

Categories

Gets related Blog posts by first existing post category. You have ability to control how many posts you want to see.

Installation

Install plugin and add it where you want to see on your page. You can use it as prepared component

{% component 'related' %}

Or you can make your own structure

{% for article in related %}
{% set image = article.featured_images.first %}
<li>
    <a href="{{url('/blog', {'seo': article.slug})}}" title="{{article.title}}">
        <img src="{{ image.path }}" alt="{{article.title}}" />
        <span>{{article.title}}</span>
    </a>
</li>
{% endfor %}
1.0.1

First version of Related

Mar 04, 2019