I used method B, because I wanted it at the end of every post. But is there an if statement or some other method I could use so that the thumbs rating for each post will not appear in the RSS feed for posts? In other words, could the following:
function thumbs_rating_print($content)
{
return $content.thumbs_rating_getlink();
}
add_filter('the_content', 'thumbs_rating_print');
be adapted so that WordPress doesn’t add it when the the content is going out as part of the RSS feed?
Alternatively, is there a way to get the RSS feed to include the font awesome up and down thumb icons I’ve inserted using the “:before” statement?
The reason I wanted some sort of change is that right now, each post has a small thumb with the number of up or down votes next to it. I did this using CSS. However, I think the RSS template strips out a lot of the CSS, including the thumbs. So what I am seeing in the feed is the following (in the case where there is 3 up votes and no down votes):
3 0
Basically, I either want to hide it or show the font awesome icon thumbs, rather than the above.