RSS Reply via email

描述

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.

安裝

  • Go to Plugins > Add New, search, and install.
  • The plugin will work out of the box. All your RSS feeds will include a reply-to email address.

常見問題

How do I pick the email address that will be used in RSS feeds?

The plugin uses each author’s email address, as defined for each account under the Users menu.

How do I customize the email address that will be used in RSS feeds?

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 );
`

評價

There are no reviews for this plugin.

貢獻者及開發者

“RSS Reply via email” 是一個開源的軟體。以下的人對這個外掛作出了貢獻。

貢獻者

RSS Reply via email 外掛目前已有 2 個本地化語言版本。 感謝所有譯者為這個外掛做出的貢獻。

將 RSS Reply via email 外掛本地化為台灣繁體中文版。

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄

修改日誌

[1.0.1] – 2025-06-25

Fixed

  • Remove duplicated hook
  • Remove text prepended to email address

[1.0.0] – 2025-06-17

Added

  • Initial public release.