Hello there,
I don’t think I’m filtering this right. I created a Related Posts module and I’d like to have it populate only tags the same as the blog post itself. This is how the page looks. Which is great, I just want it to populate related posts by tag only. Not other tags.
:
{% set current_post_tags = blog_recent_tag_posts %}
{% related_blog_posts limit=3, no_wrapper=True, post_formatter="recent_post", tags="current_post_tags" %}
I also tried this(listed below) but the same posts pop up, which are unrelated. I also went through this doc but can’t wrap my head around it: Creating a related blog post listing with the blog related posts HubL tag - HubSpot docs
{% related_blog_posts limit=3, no_wrapper=True, post_formatter="recent_post", tags=current_post_tags %}
