celebritygamer wrote:
I'm wondering if these is a way I can display images with the rss feeds.
I am displaying feeds on my Wordpress site.
yes!
not sure how wp works, but here is some code that might steer you in the right directions
the rss feed stores an element(?) called "foldername"
to get images you just need to manipulate that around as such:
the base link for images is usually:
note the following removes the "h t t p : / /" from the message here. so keep in mind that is needed.
games.bigfishgames.com/
I'll use the latest game Eden's Quest
if you look as the rss feed for that game it is stored as:
en_edens_quest
to get the 80x80 image just do
games.bigfishgames.com/en_edens_quest/edens_quest_80x80.jpg
note the use of the second foldername in the above example. the "en_" has been removed. so you will have to manipulate the foldername string.
to get the big icon substitute the "_80x80" with "_feature" and you will have the larger icon.
Hope this helps