I'm trying to remove the the_guid()
function that appears in feed-rss2.php. I've tried remove_action('rss2_item', 'the_guid')
or remove_filter
but nothing happens. I’ve also tried different hooks like the_content_rss
...
The function appears on line 43 of feed-rss2.php, enclosed by <item></item>
.
Update
With echo current_filter()
, I found that the hook is do_feed_rss2
. But I still can't remove the function.