0+
June 25, 2025
June 25, 2025
Some RSS readers display an email button under each post, if the RSS feed includes a reply-to email address. This plugins adds that email address to all posts in all your RSS feeds.
This plugin was inspired by this article by Florian Ziegler.
The plugin uses each author’s email address, as defined for each account under the Users menu.
If you do not want to use the account’s email address, you can set a custom email address thanks to the jeherve_rss_reply_via_email_address filter:
`php
add_filter( ‘rss_reply_via_email_author_info’, function( $author_info, $author_id, $post ) {
$author_info[’email’] = ‘your@email.com’;
return $author_info;
}, 10, 3 );
`