<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Automatic Related Posts based on Blog Tags in Blog, Website &amp; Page Publishing</title>
    <link>https://community.hubspot.com/t5/Blog-Website-Page-Publishing/Automatic-Related-Posts-based-on-Blog-Tags/m-p/445559#M4923</link>
    <description>&lt;P&gt;This is exactly what we needed. Thank you so much. It seems that the content.topic_list is what we needed instead of content.tagList&lt;/P&gt;</description>
    <pubDate>Wed, 09 Jun 2021 16:01:01 GMT</pubDate>
    <dc:creator>ISupport8</dc:creator>
    <dc:date>2021-06-09T16:01:01Z</dc:date>
    <item>
      <title>Automatic Related Posts based on Blog Tags</title>
      <link>https://community.hubspot.com/t5/Blog-Website-Page-Publishing/Automatic-Related-Posts-based-on-Blog-Tags/m-p/264130#M2380</link>
      <description>&lt;P&gt;Hi, I'm wondering where I've went wrong trying to implement the related posts HubL on my site. What I need is for up to 6 related blog posts to populate automatically on a single blog post, based on that posts' tags. It should be able to use the post tags, and pull in other related blog posts. I've created a module, but nothing is being pipulated at this time. Here's my code:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;section class="related"&amp;gt;
  &amp;lt;h3&amp;gt;
    Related Products
  &amp;lt;/h3&amp;gt;
  &amp;lt;div class="post-listing"&amp;gt;
   {% macro blog_post_formatter(blog_post) %}
      &amp;lt;a href="{{blog_post.url}}"&amp;gt;
        &amp;lt;div class="wrapper" style="background: #fff url('{{ blog_post.featured_image_url }}') no-repeat top center / 100% auto;"&amp;gt;
          &amp;lt;h4&amp;gt;
            {{blog_post.name}}
          &amp;lt;/h4&amp;gt;
          {% if blog_post.post_summary|length %}
            &amp;lt;p&amp;gt;
              {{ blog_post.post_summary|safe }}
            &amp;lt;/p&amp;gt;
          {% endif %}
        &amp;lt;/div&amp;gt;
      &amp;lt;/a&amp;gt;
    {% endmacro %}
    
    {% set tagNames = content.tag_names %}

	  {% related_blog_posts blog_ids="1234567" limit="6", tags="{{tagNames|join(',')}}", start_date="{{year - 1}}-01-01", post_formatter="blog_post_formatter"  %}
  
  &amp;lt;/div&amp;gt;
&amp;lt;/section&amp;gt;&lt;/PRE&gt;&lt;P&gt;I've veen tried the most simple implementation in the tutorials, and still, nothing gets pulled in. Please help!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 May 2019 21:38:46 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Blog-Website-Page-Publishing/Automatic-Related-Posts-based-on-Blog-Tags/m-p/264130#M2380</guid>
      <dc:creator>MBFitz</dc:creator>
      <dc:date>2019-05-17T21:38:46Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Related Posts based on Blog Tags</title>
      <link>https://community.hubspot.com/t5/Blog-Website-Page-Publishing/Automatic-Related-Posts-based-on-Blog-Tags/m-p/265871#M2418</link>
      <description>&lt;P&gt;Hi Maribeth, I'm not sure if you've solved this by now, but I figured I'd share my thoughts...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The issue I'm seeing is how the Related Posts tag is being called:&lt;/P&gt;&lt;PRE&gt;{% related_blog_posts blog_ids="5071829" limit="6", tags="{{tagNames|join(',')}}", start_date="{{year - 1}}-01-01", post_formatter="blog_post_formatter"  %}&lt;/PRE&gt;&lt;P&gt;Whenever you are within a HubL declaration ( {% ... %} ), you do not need to use {{ }} to reference HubL variables, you can just write the variables without the {{ }}. Also the 'limit' attribute value does not need to be in quotes:&lt;/P&gt;&lt;PRE&gt;{% related_blog_posts blog_ids="5071829" limit=6, tags=tagNames|join(','), start_date=(year - 1)|string~"-01-01", post_formatter="blog_post_formatter"  %}&lt;/PRE&gt;&lt;P&gt;Here is HubSpot's article on using the Blog Related Posts tag, which has some examples of different uses of the tag -&amp;nbsp;&lt;A href="https://designers.hubspot.com/tutorials/creating-a-related-post-listing" target="_blank"&gt;https://designers.hubspot.com/tutorials/creating-a-related-post-listing&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2019 19:14:42 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Blog-Website-Page-Publishing/Automatic-Related-Posts-based-on-Blog-Tags/m-p/265871#M2418</guid>
      <dc:creator>jamesCutler</dc:creator>
      <dc:date>2019-04-18T19:14:42Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Related Posts based on Blog Tags</title>
      <link>https://community.hubspot.com/t5/Blog-Website-Page-Publishing/Automatic-Related-Posts-based-on-Blog-Tags/m-p/266156#M2423</link>
      <description>&lt;P&gt;Hi James,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your reply! I updated my code to the correct syntax, however I'm still not seeing any related posts. &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's my updated code:&lt;/P&gt;&lt;PRE&gt;{% set tagNames = content.tag_names %}&lt;BR /&gt;{% related_blog_posts blog_ids="5071829", limit=6, tags=tagNames|join(','), post_formatter="blog_post_formatter" %}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know there should be a few related posts rendered based on tags, so I'm not sure why they're not showing up. Do you have any other thoughts?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2019 19:18:01 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Blog-Website-Page-Publishing/Automatic-Related-Posts-based-on-Blog-Tags/m-p/266156#M2423</guid>
      <dc:creator>MBFitz</dc:creator>
      <dc:date>2019-04-22T19:18:01Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Related Posts based on Blog Tags</title>
      <link>https://community.hubspot.com/t5/Blog-Website-Page-Publishing/Automatic-Related-Posts-based-on-Blog-Tags/m-p/266158#M2424</link>
      <description>&lt;P&gt;Hi MaryBeth,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Okay, at least we've ruled out the syntax causing the issue...&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Looking at the blog ID you're using, this is me grasping at straws, but I'm wondering if that's not the correct ID? Usually I'd expect it to be a longer number like '5900440271'. For reference, the ID of a blog can be found in the URL of the blog dashboard:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://app.hubspot.com/blog/[PORTAL" target="_blank"&gt;https://app.hubspot.com/blog/[PORTAL&lt;/A&gt; ID]/blogs/[BLOG ID]/manage/posts/all&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Additionally, you're assigning the 'tagNames' variable the value of 'content.tag_names' - if you are not viewing this module in the context of a blog post (previewing the module in the design manager, for example), this variable would not be set properly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hopefully this gets us a bit further, let me know if I need to clarify anything.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best,&lt;BR /&gt;James&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2019 19:33:25 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Blog-Website-Page-Publishing/Automatic-Related-Posts-based-on-Blog-Tags/m-p/266158#M2424</guid>
      <dc:creator>jamesCutler</dc:creator>
      <dc:date>2019-04-22T19:33:25Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Related Posts based on Blog Tags</title>
      <link>https://community.hubspot.com/t5/Blog-Website-Page-Publishing/Automatic-Related-Posts-based-on-Blog-Tags/m-p/270865#M2505</link>
      <description>&lt;P&gt;Hi James,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The blog post ID fixed one issue - so now it is pulling in the correct posts, however, it isn't using the macro that I set and it's just using the default markup when it prints the related posts.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any thoughts on that?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much for your help!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 May 2019 21:37:57 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Blog-Website-Page-Publishing/Automatic-Related-Posts-based-on-Blog-Tags/m-p/270865#M2505</guid>
      <dc:creator>MBFitz</dc:creator>
      <dc:date>2019-05-17T21:37:57Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Related Posts based on Blog Tags</title>
      <link>https://community.hubspot.com/t5/Blog-Website-Page-Publishing/Automatic-Related-Posts-based-on-Blog-Tags/m-p/271310#M2518</link>
      <description>&lt;P&gt;Hi Maribeth,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sounds like we're making progress!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I wonder if the way you've defined your macro is causing it to not be usable by the related posts tag. Your macro takes one argument:&lt;/P&gt;&lt;PRE&gt;{% macro blog_post_formatter(blog_post) %}&lt;/PRE&gt;&lt;P&gt;but the custom macro for the related posts tag is supposed to take three arguments:&lt;/P&gt;&lt;PRE&gt;{% macro blog_post_formatter(blog_post, index, count) %}&lt;/PRE&gt;&lt;P&gt;I wonder if the tag is rejecting your macro and falling back to using the default formatter, because it is unable to call your macro using the 'index' and 'count' arguments.&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2019 16:29:25 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Blog-Website-Page-Publishing/Automatic-Related-Posts-based-on-Blog-Tags/m-p/271310#M2518</guid>
      <dc:creator>jamesCutler</dc:creator>
      <dc:date>2019-05-21T16:29:25Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Related Posts based on Blog Tags</title>
      <link>https://community.hubspot.com/t5/Blog-Website-Page-Publishing/Automatic-Related-Posts-based-on-Blog-Tags/m-p/332735#M3377</link>
      <description>&lt;P&gt;&amp;lt;h3&amp;gt;&amp;lt;span&amp;gt;Similar Content&amp;lt;/span&amp;gt;&amp;lt;/h3&amp;gt;&lt;/P&gt;&lt;P&gt;{% macro blog_post_formatter(content, index, count) %}&lt;BR /&gt;&lt;BR /&gt;&amp;lt;div class="related-post-items"&amp;gt;&lt;BR /&gt;&amp;lt;div class="title"&amp;gt;&amp;lt;a href="{{ content.url}}"&amp;gt;{{content.name}}&amp;lt;/a&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;div class="post-body clearfix"&amp;gt;&lt;BR /&gt;&amp;lt;a class="author-link" href="#"&amp;gt;{{ blog_content.publishDate|datetimeformat('%B %e, %Y') }} &amp;lt;/a&amp;gt;&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;/div&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;{% endmacro %}&lt;BR /&gt;&lt;BR /&gt;{% set tagNames = content.tag_names %}&lt;BR /&gt;&lt;BR /&gt;{% related_blog_posts blog_ids="default" limit="3", tags="tagNames|join(',')", post_formatter="blog_post_formatter" %}&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Apr 2020 14:41:08 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Blog-Website-Page-Publishing/Automatic-Related-Posts-based-on-Blog-Tags/m-p/332735#M3377</guid>
      <dc:creator>ramanverma2005</dc:creator>
      <dc:date>2020-04-20T14:41:08Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Related Posts based on Blog Tags</title>
      <link>https://community.hubspot.com/t5/Blog-Website-Page-Publishing/Automatic-Related-Posts-based-on-Blog-Tags/m-p/337918#M3483</link>
      <description>It could work, Actually this is was I been found : &lt;A href="https://designers.hubspot.com/tutorials/creating-a-related-post-listing" target="_blank"&gt;https://designers.hubspot.com/tutorials/creating-a-related-post-listing&lt;/A&gt; &lt;A href="https://designers.hubspot.com/docs/hubl/variables-macros-syntax#macros" target="_blank"&gt;https://designers.hubspot.com/docs/hubl/variables-macros-syntax#macros&lt;/A&gt;</description>
      <pubDate>Mon, 11 May 2020 03:07:58 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Blog-Website-Page-Publishing/Automatic-Related-Posts-based-on-Blog-Tags/m-p/337918#M3483</guid>
      <dc:creator>GilbertoAng</dc:creator>
      <dc:date>2020-05-11T03:07:58Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Related Posts based on Blog Tags</title>
      <link>https://community.hubspot.com/t5/Blog-Website-Page-Publishing/Automatic-Related-Posts-based-on-Blog-Tags/m-p/445169#M4917</link>
      <description>&lt;P&gt;We are running into a similar issue. Related posts that are being shown are not correlated to the tag of the current post.&lt;/P&gt;&lt;P&gt;This is what we've set as the tag name&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{% set tagNames = content.tagList|join(", ") %}

{% related_blog_posts tags=tagNames, blog_ids="33042692797", limit=3, post_formatter="post_formatter_standard" %}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We've gone ahead and changed the tagNames with different methods. Such as:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;content.tag_names|lower|replace(' ','-')&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there someething we are doing wrong? It seems like it may be a bug with hubspot.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jun 2021 17:39:00 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Blog-Website-Page-Publishing/Automatic-Related-Posts-based-on-Blog-Tags/m-p/445169#M4917</guid>
      <dc:creator>ISupport8</dc:creator>
      <dc:date>2021-06-08T17:39:00Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Related Posts based on Blog Tags</title>
      <link>https://community.hubspot.com/t5/Blog-Website-Page-Publishing/Automatic-Related-Posts-based-on-Blog-Tags/m-p/445372#M4918</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/196771"&gt;@ISupport8&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for reaching out! I'll bring to this conversation a few experts that might be able to guide you.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/133469"&gt;@Chris-M&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/127598"&gt;@Sjardo&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/93787"&gt;@Theodor&lt;/a&gt;&amp;nbsp;do you have any recommendations for&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/196771"&gt;@ISupport8&lt;/a&gt;?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;Sharon&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jun 2021 08:54:30 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Blog-Website-Page-Publishing/Automatic-Related-Posts-based-on-Blog-Tags/m-p/445372#M4918</guid>
      <dc:creator>sharonlicari</dc:creator>
      <dc:date>2021-06-09T08:54:30Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Related Posts based on Blog Tags</title>
      <link>https://community.hubspot.com/t5/Blog-Website-Page-Publishing/Automatic-Related-Posts-based-on-Blog-Tags/m-p/445390#M4919</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We are running 2 related post based on tags on bureuvet.nl/blog.&lt;BR /&gt;&lt;BR /&gt;A quick copy and paste of our module with some inline documentation:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;{% if content.topic_list %}
    {% set max_posts = 2 %} {# Set the max number of related posts to be output to the page here #}
    {% set count = 0 %}
    {% for topic in content.topic_list %}
        {% if loop.index  == 1 %}
            {% set topic_one = blog_recent_topic_posts('default', topic.slug, max_posts + 1 ) %}
            {% if topic_one|length == 1 %}
                {#&amp;lt;p&amp;gt;There are no related posts&amp;lt;/p&amp;gt;#}
            {% endif %}
        {% elif loop.index == 2 %}
            {% set topic_two = blog_recent_topic_posts('default', topic.slug, max_posts + 1 ) %}
        {% elif loop.index == 3 %}
            {% set topic_three = blog_recent_topic_posts('default', topic.slug, max_posts + 1 ) %}
        {% endif %}
        {% if loop.length &amp;gt;= 3 and loop.index == 3 %}
            {% set related_posts = (topic_one + topic_two + topic_three)|sort(true, false, 'publish_date')|unique('name') %}
            {% set loop_count = 3 %}
        {% elif loop.length == 2 and loop.index == 2 %}
            {% set related_posts = (topic_one + topic_two)|sort(true, false, 'publish_date')|unique('name') %}
            {% set loop_count = 2 %}
        {% elif loop.length == 1 and loop.index == 1 %}
            {% set related_posts = topic_one %}
            {% set loop_count = 1 %}
        {% endif %}
        {% if loop.index == loop_count %}
						{% if topic_one|length != 1 %}
              &amp;lt;div class="related-post-items"&amp;gt;
              &amp;lt;div class="related-post-header-title"&amp;gt;Related articles&amp;lt;/div&amp;gt;
              &amp;lt;div class="post-listing test1"&amp;gt;
                {% for post in related_posts %}
                    {% if content.absolute_url != post.absolute_url and count &amp;lt; max_posts %}

                        &amp;lt;a class="post-item" href="{{post.absolute_url}}" title="{{ post.name|striptags }}" {# post image {% if post.post_list_summary_featured_image %}style="background-image:url('{{ resize_image_url( post.post_list_summary_featured_image , 0, 0, 600) }}');"{% endif %}#}&amp;gt;
                          &amp;lt;div class="top"&amp;gt;
                            {# Tags #}
                            &amp;lt;p class="tags"&amp;gt;
                              {% if post.topic_list %}{% for topic in post.topic_list %}{{ topic.name }}{% if not loop.last %} | {% endif %}{% endfor %}{% endif %}
                            &amp;lt;/p&amp;gt;

                            {# Title #}
                            &amp;lt;div class="title"&amp;gt;{{ post.name }}&amp;lt;/div&amp;gt;

                          &amp;lt;/div&amp;gt;
                          &amp;lt;div class="bg"&amp;gt;&amp;lt;/div&amp;gt;
                          &amp;lt;div class="bottom"&amp;gt;

                            &amp;lt;div class="author-info"&amp;gt;
                              {# Date #}
                              {# &amp;lt;div class="published-date"&amp;gt;{{ post.publish_date_localized }}&amp;lt;/div&amp;gt; #}

                              {# Author #}
                              {%if post.blog_post_author %}
                              &amp;lt;div class="author"&amp;gt;{{ post.blog_post_author.display_name }}&amp;lt;/div&amp;gt;
                              {% endif %}
                            &amp;lt;/div&amp;gt;
                            {# Read more #}
                            &amp;lt;div class="read-more"&amp;gt;Read more&amp;lt;/div&amp;gt;

                          &amp;lt;/div&amp;gt;

                        &amp;lt;/a&amp;gt;

                        {% set count = count + 1 %}
                    {% endif %}
                {% endfor %}
                &amp;lt;/div&amp;gt;
                &amp;lt;/div&amp;gt;
							{% endif %}
        {% endif %}
    {% endfor %}
{% endif %} &lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps! if you need some more info about what we are actually doing, let me know &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jun 2021 09:44:29 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Blog-Website-Page-Publishing/Automatic-Related-Posts-based-on-Blog-Tags/m-p/445390#M4919</guid>
      <dc:creator>Sjardo</dc:creator>
      <dc:date>2021-06-09T09:44:29Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Related Posts based on Blog Tags</title>
      <link>https://community.hubspot.com/t5/Blog-Website-Page-Publishing/Automatic-Related-Posts-based-on-Blog-Tags/m-p/445559#M4923</link>
      <description>&lt;P&gt;This is exactly what we needed. Thank you so much. It seems that the content.topic_list is what we needed instead of content.tagList&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jun 2021 16:01:01 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/Blog-Website-Page-Publishing/Automatic-Related-Posts-based-on-Blog-Tags/m-p/445559#M4923</guid>
      <dc:creator>ISupport8</dc:creator>
      <dc:date>2021-06-09T16:01:01Z</dc:date>
    </item>
  </channel>
</rss>

