[WordPress] 外掛分享: Announce from the Dashboard

首頁外掛目錄 › Announce from the Dashboard
WordPress 外掛 Announce from the Dashboard 的封面圖片
7,000+
安裝啟用
★★★★
4.3/5 分(6 則評價)
719 天前
最後更新
問題解決
WordPress 3.8+ v1.5.3 上架:2012-09-16

內容簡介

這個外掛用於按照使用者角色顯示公告。

如果想要更改外掛程式權限,請參考以下程式碼。

例如,添加過濾器:

function afd_custom_change_capability( $capability ) {
// 最低程式權限
$capability = 'edit_posts';
return $capability;
}
add_filter( 'afd_capability_manager' , 'afd_custom_change_capability' );

如果想要添加過濾器,請參考以下程式碼。

例如,添加過濾器:

function afd_custom_filter( $announces ) {
// 過濾器
return $announces;
}

add_filter( 'afd_before_announce' , 'afd_custom_filter' );

日語說明

這個外掛用於在儀表板上顯示公告。
根據使用者角色,可以設置僅顯示給編輯者、顯示給投稿者、貢獻者和訂閱者等。

外掛標籤

開發者團隊

⬇ 下載最新版 (v1.5.3) 或搜尋安裝

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

原文外掛簡介

This plugin to show announce for per user roles.
And, if you want to change plugin capability, please refer to this code.
For example add filter:
function afd_custom_change_capability( $capability ) {
// plugin minimum capability
$capability = 'edit_posts';
return $capability;
}
add_filter( 'afd_capability_manager' , 'afd_custom_change_capability' );

And, if you want to add filter, please refer to this code.
For example add filter:
function afd_custom_filter( $announces ) {
// filter
return $announces;
}

add_filter( 'afd_before_announce' , 'afd_custom_filter' );

日本語でのご説明(Japanese description)
このプラグインは、ダッシュボードにお知らせを表示するプラグインです。
ユーザーの権限グループ別に、編集者のみへの表示、
投稿者と寄稿者と購読者のみに表示する設定もできます。

延伸相關外掛

文章
Filter
Apply Filters
Mastodon