Your sites Log in Sign up Menu

RSS feed title customization for specific tags?

I use the below code for putting a unicode arrow after a title on the archives page for linkposts. Is it possible to add a similar customization to the feed.rss template so that the title would get the arrow in RSS reader apps? I want folks consuming the RSS feed to know there's a linked post to go read beyond my comments. I also have a YAML value for linkpost, if that somehow works better for this use case than the tag value.

{{#allEntries}}
       <div class="row">
            <div class="column left">          		
                  <a href="{{{url}}}">{{title}}
                      {{#tagged.linkpost}}
          			&#x21FE;
          			{{/tagged.linkpost}}
                  </a>
            </div>
              <div class="column right">
                  <span class="smalldate">{{date}}</span>
            </div>
        </div>
        {{/allEntries}}

3 months ago, 2 replies   developers   rss   tags   Improve this question

Yes, you'll want to inject the conditional tag into your RSS feed's source file which is generally called feed.rss:

{{#tagged.linkpost}}
    &#x21FE;
{{/tagged.linkpost}}

Does that help? Please let me know if you have any questions about this or anything else

Answered 3 months ago · Improve this answer

This is exactly what I was hoping was the answer. I didn't want to implement it on assumption and cause issues to the feed. Thank you!

Answered 3 months ago · Improve this answer