簡體   English   中英

有什么辦法可以在wordpress中為非管理員用戶隱藏所有管理員通知?

[英]Is there any way to hide all admin notification for non admin users in wordpress?

有沒有辦法為非管理員用戶全部隱藏管理員通知。

我使用了下面的代碼,但是它將僅隱藏更新通知,但我需要隱藏所有通知

 function hide_update_notice_to_all_but_admin_users()
    {
        if (!current_user_can('update_core')) {
            remove_action( 'admin_notices', 'update_nag', 3 );
        }
    }
    add_action( 'admin_head', 'hide_update_notice_to_all_but_admin_users', 1 );

我也想隱藏這些類型的通知。

在此處輸入圖片說明

嘗試在活動主題的functions.php文件中插入以下代碼。 此代碼可能會完全禁用有關插件,主題和WordPress的所有更新通知。

function remove_core_updates(){
    global $wp_version;
    return(object) array('last_checked'=> time(),'version_checked'=> $wp_version,);
}
add_filter('pre_site_transient_update_core','remove_core_updates');
add_filter('pre_site_transient_update_plugins','remove_core_updates');
add_filter('pre_site_transient_update_themes','remove_core_updates');

我希望這段代碼能正常工作。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM