Frustration!
Is there an easy to change the RSS title link using the RSS widget to link to the feed instead of the blog itself? It can’t be this hard..
I could easily hard code this but I want to keep it as modular as possible.
Frustration!
Is there an easy to change the RSS title link using the RSS widget to link to the feed instead of the blog itself? It can’t be this hard..
I could easily hard code this but I want to keep it as modular as possible.
You must be logged in to post a comment.
I don’t see any easy way in source.
That link is retrieved from feed by SimplePie method and is not passing through any deliberate filters. And it gets concatenated with rest of title after that is passed through filter, not before.
The only idea I have is to filter it in
esc_url()
function atclean_url
hook, but that will only work nicely if link is unique and won’t break elsewhere… Or will take some messy hook juggling to target it precisely.