Remove RSS feed image [duplicate]
Possible Duplicate:
A simple program to CRUD node and node values of xml file DOM Remove Child from RSS XML
I am using fetch rss right now to display 1 new article from an RSS feed on my homepage. I would like to reduce the size of my homepage, but unfortunately the feed often posts large images which slow it down. Is there a way to modify one of the existing RSS feed modules (or fetchrss) or write a new one that will remove images from the feed before posting? Thanks
You can set all tag NOT to display by adding CSS class:
#rss_container img {
display: none;
}
精彩评论