If you use WordPress and make use of the <!-- more --> tag, some of you may want to still show the complete post in the RSS feed.

You have to change some code, but it's easy to do.

UK EVENTAttend ffconf.org 2024

The conference for people who are passionate about the web. 8 amazing speakers with real human interaction and content you can't just read in a blog post or watch on a tiktok!

In all the wp-includes/feed-*.php files, change:

$more = 1;

To:

global $more;
$more = 1;

This will change the global more flag and include the complete post - as my blog does. Happy hacking.