Hello! I’ve searched and figured this might be easier to ask in the forum!
Is it possible to have the {{#get}} function pull in a kg-bookmark-publisher element if a post has it? For example, I have:
{{#get "posts" limit="4" filter="tag:news" include="tags"}}
{{#foreach posts visibility="all"}}
<div class="col-xl-4 col-lg-5 f-left">
<article class="post post-compact post-large{{#if feature_image}} has-img{{/if}}">
<a href="{{url}}" aria-label="{{title}}" class="overlay-link"></a>
<div class="post-content">
{{#if kg-bookmark-content}}
<span class="kg-bookmark-publisher">
{{kg-bookmark-publisher}}
</span>
{{/if}}
{{#primary_tag}}
<div class="tag-wrap">
<a href="{{url}}" class="tag tag-pill tc-{{slug}}">{{name}}</a>
</div>
{{/primary_tag}}
<h2 class="post-title h4">{{title}}</h2>
</div>
</article>
</div>
{{/foreach}}
</div>
{{/get}}
Is this something that is even possible? Thanks so much!