前言介紹
- 這款 WordPress 外掛「WP Updates Notifier」是 2011-05-31 上架。
- 目前有 30000 個安裝啟用數。
- 上一次更新是 2020-02-14,距離現在已有 1906 天。超過一年沒更新,安裝要確認版本是否可用。以及後續維護問題!
- 外掛最低要求 WordPress 3.1 以上版本才可以安裝。
- 有 35 人給過評分。
- 還沒有人在論壇上發問,可能目前使用數不多,還沒有什麼大問題。
外掛協作開發者
外掛標籤
admin | theme | monitor | upgrade | notification |
內容簡介
這個外掛程式會監控你的 WordPress 安裝,並會在核心、外掛程式和佈景主題更新時發送電子郵件通知你。如果你不經常登入 WordPress 管理員,或支援客戶的網站,這個外掛程式非常適合你。
功能
設定更新檢查的時間間隔:每小時、兩次每天或每天一次。
設定 WordPress 檢查更新的頻率,這樣你就可以更早地了解更新了。
以電子郵件的方式獲得關於核心、外掛程式和佈景主題更新的通知。
選擇是否要被通知關於僅活躍的佈景主題和外掛程式的更新。
移除非管理者使用者的升級提示訊息。
對於高級使用者,有許多過濾器和動作可用。更多即將推出。
這個外掛程式是“Update Notifier”的分支版本。這個外掛程式的原因是,現有的外掛程式似乎已經沒有再進一步的開發了,而且也沒有辦法聯繫原始作者來詢問是否可以接手開發。WP Updates Notifier 優於Updates Notifier的改進如下:
從頭開始完全重寫,使用WordPress插件寫作的最佳實踐
代碼包裝在一個類中,因此更好的命名空間。
你可以設定cron的間隔,進行更頻繁的檢查。
通知之前會觸發WordPress內部更新檢查。
允許你設置“來源地址”。
允許您設置多個“收件人地址”。
利用了設置API。
高級用戶可用的幾個鉤子和過濾器。
提供積極支援和開發。
語言
法語由Christophe Catarina - 2013年7月3日添加
德語由Alexander Pfabel - 2012年10月2日添加
過濾器
為了讓你能夠更改 WP Updates Notifier 發送的電子郵件主題和內容,提供了兩個過濾器。
sc_wpun_email_subject
@parameters:
$email_subject - 要過濾的電子郵件主題。
例子:
/*
* 更改 WP Updates Notifier 發送的電子郵件主題。
*/
function alter_wp_updates_notifier_email_subject( $email_subject ) {
$email_subject = '這是更新通知的新電子郵件主題';
return $email_subject;
}
add_filter( 'sc_wpun_email_subject', 'alter_wp_updates_notifier_email_subject' );
sc_wpun_email_content
@parameters:
$message - 要過濾的電子郵件內容
例子:
/*
* 更改 WP Updates Notifier 發送的電子郵件內容。
*/
function alter_wp_updates_notifier_email_content( $message ) {
$message = '這是我們的新電子郵件內容,將覆蓋預設內容。';
return $message;
}
add_filter( 'sc_wpun_email_content', 'alter_wp_updates_notifier_email_content' );
原文外掛簡介
Monitors your WordPress installation for core, plugin and theme updates and emails you when they are available. This plugin is ideal if you don’t login to your WordPress admin regularly or you support a client’s website.
Features
Set the interval of how often to check for updates; hourly, twice daily or daily.
Sets WordPress to check for updates more often meaning you get to know about updates sooner.
Get emailed about core, plugin and theme updates.
Chose if you want to be notified about active only themes and plugins updates.
Remove upgrade nag message to non-admin users.
For advanced users there are a number of filters and actions you can use. More coming soon.
This plugin is a fork of Update Notifier. This plugin was forked because there seemed to be no further development on the existing plugin and there was no way to contact the original author to ask about taking ownership. WP Updates Notifier has the following improvements over Updates Notifier:
Completely rewritten from the ground up using best practises for writing WordPress plugins
Code wrapped in a class so better namespace.
You can set the cron interval, allowing for more frequent checks.
Update checks trigger WordPress internal update check before notification.
Allows you to set the ‘from address’.
Allows you to set multiple ‘to addresses’.
Makes use of the Settings API.
A number of available hooks and filters for advanced users.
Active support and development.
Languages
French by Christophe Catarina – Added 03 July 2013
German by Alexander Pfabel – Added 02 October 2012
Filters
Two filters have been provided to allow you to alter the email subject and email content being sent by WP Updates Notifier.
sc_wpun_email_subject
@parameters:
$email_subject – the email subject to be filtered.
Example:
/*
* Alter the email subject being sent by WP Updates Notifier
*/
function alter_wp_updates_notifier_email_subject( $email_subject ) {
$email_subject = 'This is the new email subject for updates notifier';
return $email_subject;
}
add_filter( 'sc_wpun_email_subject', 'alter_wp_updates_notifier_email_subject' );
sc_wpun_email_content
@parameters:
$message – the content of the email to be filtered
Example:
/*
* Alter the email content being sent by WP Updates Notifier
*/
function alter_wp_updates_notifier_email_content( $message ) {
$message = 'This is our new email content that will override the default.';
return $message;
}
add_filter( 'sc_wpun_email_content', 'alter_wp_updates_notifier_email_content' );
各版本下載點
- 方法一:點下方版本號的連結下載 ZIP 檔案後,登入網站後台左側選單「外掛」的「安裝外掛」,然後選擇上方的「上傳外掛」,把下載回去的 ZIP 外掛打包檔案上傳上去安裝與啟用。
- 方法二:透過「安裝外掛」的畫面右方搜尋功能,搜尋外掛名稱「WP Updates Notifier」來進行安裝。
(建議使用方法二,確保安裝的版本符合當前運作的 WordPress 環境。
1.0 | 1.1 | 1.2 | 1.3 | 1.6 | 1.0.1 | 1.0.2 | 1.0.3 | 1.0.4 | 1.3.1 | 1.3.2 | 1.4.1 | 1.4.3 | 1.4.4 | trunk |
延伸相關外掛(你可能也想知道)
APCu Manager 》在 WordPress 管理員儀表板中準確地管理 APCu 統計信息。, APCu 管理器是一個功能完整的 APCu 管理和分析報告工具。它使您能夠監視和優化 WordPress 網站或網...。
SiteAlert – Uptime, Speed, and Security Monitoring for WordPress 》SiteAlert 檢查您的 WordPress 安裝,以確保其健康、最新和安全。使用 SiteAlert 頁面,可以使用簡單的彩色區域快速查看檢查的結果。, 安裝後,將會在工具菜...。
Health Endpoint 》這個簡單的外掛程式會建立一個 /health 的端點,讓你監控 WordPress 網站的狀態。端點會測試資料庫連接的狀態,當你的網頁健康時返回 200 OK 的 HTTP 狀態碼...。
OPcache Manager 》在 WordPress 管理員控制面板中查看 OPcache 統計數據和管理功能。, OPcache Manager 是一款完整的 OPcache 管理和分析報告工具,它允許您監控和優化 WordPre...。
Cron Setup and Monitor – Get URL Cron 》使用 Get URL Cron 外掛可以檢視、建立和檢查 cron 作業,進行 Http-URL 或 Shortcode 請求。, Get URL Cron 外掛功能包括:, * 新增、編輯、刪除 cron 作業...。
WordPress File Monitor 》監視您的網站,以查看新加、更改和已刪除的檔案!跟蹤所有網站目錄中的變更,並在電子郵件中收到警報!免費保持安全!, 功能, , 監視檔案系統以查看新增/刪除...。
Banhammer – Monitor Site Traffic, Block Bad Users and Bots 》, Banhammer:保護你的網站免於敵人襲擊!, , Banhammer 給予你完全控制權,決定誰有權限進入你的網站。在防禦塔中監視網路流量,並審查可疑的訪問者。如果你...。
OPcache Dashboard 》如您所知,OPcache 沒有管理頁面。 這個外掛為 WordPress 設計了 OPcache 儀表板。, , 使用 WordPress 和 OPcache 時,您是否遇到問題? 在升級核心/插件/佈...。
Sites Monitor 》網站健康評估一直都是一個重要的議題,因此, Sites Monitor 外掛為WordPress使用者提供了一個便利的解決方案。這個外掛可以讓使用者從一個簡單的 WordPress ...。
OPCache Scripts 》使用此外掛程式顯示有關您的伺服器的 OPCache 詳細資訊,包括記憶體使用情況、所有快取腳本的清單以及基於檔案系統樹的有用的記憶體使用情況視覺化。, 此外掛...。
NEW! WordPress Status Monitor 》WordPress Status Monitor 是一個易於安裝的管理外掛,用於檢查您的網站的狀態、資源和正常運作的時間。, 特點, , 狀態監控:測試您的網站是否運作正常以及其...。
Graphic Web Design, Inc. Manager 》這個外掛可以自動更新你的 WordPress 主版本、次版本、外掛和佈景主題,以提高網站的安全性。此外,它還會發送電子郵件通知你外掛已更新,讓你可以驗證網站是...。
SacksonWeb Data 》免費版本 - 本外掛會在您安裝的網站上收集數據,您可以進入設定頁面檢視一些我們建議您審查並考慮更改的設定。, , 此外,PRO 版本會利用第三方服務 https://m...。
Loginpetze 》有時候,知道使用者在 WordPress 成功登入的時間是相當有用的。Loginpetze 可以生成一封通知郵件來通知這件事情。這是一種方便的方法,例如監控客戶登入暫存...。
Performance Monitor 》HTML Code:, ```html, , , , ,
Performance Monitor WordPress 外掛簡介
, ,P...。