开发者 | jeherve |
---|---|
更新时间 | 2025年6月25日 18:10 |
PHP版本: | 8.1 及以上 |
WordPress版本: | 6.8 |
版权: | GPLv2 or later |
版权网址: | 版权信息 |
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 );