[WordPress] 外掛分享: Commenter Emails

首頁外掛目錄 › Commenter Emails
WordPress 外掛 Commenter Emails 的封面圖片
⚠ 此外掛已下架 — 不再更新維護,建議勿安裝。
600+
安裝啟用
★★★★★
5/5 分(9 則評價)
2079 天前
最後更新
0%
問題解決
WordPress 4.1+ v2.6.1 上架:2009-06-14

內容簡介

這款 WordPress 外掛可以讓管理員在後台新增頁面 留言 -> 留言者電子信箱 查看以下資訊:

該網站所有不重複留言者的總數
每位留言者的電子郵件、名字和提供的網站 URL (依不重複計算)
下載以上提到的所有留言者的電子郵件清單,格式為 CSV(逗號分隔值)格式,此外可以選擇下載他們的網站 URL

此外,此外掛不會從清單中排除已知的電子郵件地址(例如管理員和發佈者的電子郵件地址)。
這個外掛還提供了 6 個 Hooks,其中包括了能夠自定義是否顯示 CSV 下載按鈕、是否顯示電子郵件清單等功能,您可以利用這些 Hooks 來進行相關的設定。
詳細資訊請參閱此外掛頁面:Plugin Homepage | Plugin Directory Page | GitHub | Author Homepage

外掛標籤

開發者團隊

⬇ 下載最新版 (v2.6.1) 或搜尋安裝

① 下載 ZIP → 後台「外掛 › 安裝外掛 › 上傳外掛」
② 後台搜尋「Commenter Emails」→ 直接安裝(推薦)
📦 歷史版本下載

原文外掛簡介

Via the admin page added by the plugin, Comments -> Commenter Emails, admin users are presented with the following information:

A total count of all unique commenters to the site
The entire list of each unique commenters’ email addresses, names, and provided website URLs
A button to download the entire list of unique commenters’ email addresses (and, optionally, their website URL) in CSV (comma-separated values) format

The plugin only considers approved comments and does not exclude from its listing any known email addresses (i.e. admin and post author email addresses).
Links: Plugin Homepage | Plugin Directory Page | GitHub | Author Homepage
Hooks
The plugin exposes six filters for hooking. Code using these filters should ideally be put into a mu-plugin or site-specific plugin (which is beyond the scope of this readme to explain). Less ideally, you could put them in your active theme’s functions.php file.
c2c_commenter_emails_show_csv_button (filter)
The ‘c2c_commenter_emails_show_csv_button’ hook allows you to customize whether the button to download a CSV file of the commenter emails list should be present on the plugin’s admin settings page. By default this is true.
Arguments:

$show_button (bool): Whether the download button is shown; it is ‘true’ by default.

Example:
// Disable the download button
add_filter( 'c2c_commenter_emails_show_csv_button', '__return_false' );

c2c_commenter_emails_show_emails (filter)
The ‘c2c_commenter_emails_show_emails’ hook allows you to customize whether the listing of emails should appear on the plugin’s admin settings page. By default this is true.
Arguments:

$show_emails (bool): Whether the listing of emails is shown’ it is ‘true’ by default.

Example:
// Disable showing the emails listing
add_filter( 'c2c_commenter_emails_show_emails', '__return_false' );

c2c_commenter_emails_filename (filter)
The ‘c2c_commenter_emails_filename’ hook allows you to customize the name used for the .csv file when being downloaded. By default this is ‘commenter-emails.csv’.
Arguments:

$filename (string): The filename. By default this is ‘commenter-emails.csv’.

Example:
/**
* Change the default filename to embed today's date for the Commenter Emails plugin.
*
* @param string $filename The filename for the CSV file.
* @return string.
*/
function change_ce_filename( $filename ) {
$date = date('m-d-Y', strtotime('today')); // Get today's date in m-d-Y format (i.e. 02-25-2010)
return "emails-$date.csv";
}
add_filter( 'c2c_commenter_emails_filename', 'change_ce_filename' );

manage_commenter_emails_options (filter)
The ‘manage_commenter_emails_options’ hook allows you to customize the capability required to access the commenter emails admin page. You should be certain that you’ve created the capability and assigned that capability to the desired user(s). By default this is the ‘manage_options’ capability.
Arguments:

$options (string): Capability name. By default this is the ‘manage_options’ capability.

Example:
/**
* Change the capability needed to see the Commenter Emails admin page for the Commenter Emails plugin.
*
* @param string $capability The necessary capability.
* @return string
*/
function change_ce_cap( $capability ) {
return 'manage_commenter_emails';
}
add_filter( 'manage_commenter_emails_options', 'change_ce_cap' );

c2c_commenter_emails_fields (filter)
The ‘c2c_commenter_emails_fields’ hook allows you to customize the user fields included in the download CSV file. By default the CSV file includes comment_author and comment_author_email.
Arguments:

$fields (array): Array of field names. Items must correspond to columns in the comments table. By default this is array( 'comment_author', 'comment_author_email' ). Whether explicitly included or not, ‘comment_author_email’ will always be output in the CSV.

Example:
/**
* Include the commenter's IP address in the download CSV for the Commenter Emails plugin.
*
* @param array $fields The comment email fields to include in the CSV output.
* @return array
*/
function change_ce_fields( $fields ) {
$fields[] = 'comment_author_IP';
return $fields;
}
add_filter( 'c2c_commenter_emails_fields', 'change_ce_fields' );

c2c_commenter_emails_field_separator (filter)
The ‘c2c_commenter_emails_field_separator’ hook allows you to customize the separator used in the CSV file.
Arguments:

$separator (string): String to be used as the data separator in the CSV file. Default is ‘,’.

Example:
/**
* Change the data fields separator to '|' for Commenter Emails plugin.
*
* @param string $separator The defautl separator.
* @return string
*/
function change_ce_field_separator( $separator ) {
return '|';
}
add_filter( 'c2c_commenter_emails_field_separator', 'change_ce_field_separator' );

延伸相關外掛

文章
Filter
Apply Filters
Mastodon