Updating the URL in your wordpress feed

Today I noticed that my feed did not have the correct URL in the element atom:link because I run my installation of wordpress behind a reverse proxy. There are several things that can go wrong when using this setup, and this seems to be another one which is not documented anywhere? I added a new filter to my theme functions: add_filter('self_link', 'CustomFeedUrlFilter', $priority = 10); function CustomFeedUrlFilter($url) { return home_url() ....

22. April 2020 ยท Carsten