2014-03-06 53 views
0

我正在尋找一種方法來使用函數從儀表板隱藏活動供稿。有誰知道如何做到這一點?我想完全刪除它。我想在沒有插件的情況下實現這一點。從Wordpress中刪除活動供稿管理

+0

[ 「沒有插件」 是一個神話(http://wordpress.stackexchange.com/questions/73031/where -to-put-my-code-plugin-or-functions-php),你必須編寫你自己的迷你插件來做到這一點。答案是[此搜索結果](http://wordpress.stackexchange.com/search?q=disable+dashboard+widget)。 – brasofilo

回答

0

你要麼必須創建一個插件或添加功能,以您的主題functions.php文件。

function remove_activity_dashboard_widget() { 
    remove_meta_box('dashboard_activity', 'dashboard', 'side'); 
} 

// Hook into the 'wp_dashboard_setup' action to register our function 
add_action('wp_dashboard_setup', 'remove_activity_dashboard_widget'); 

以下是關於這個主題的抄本頁面:

http://codex.wordpress.org/Dashboard_Widgets_API#Advanced:_Removing_Dashboard_Widgets

+0

在最新的wp上,它什麼都不做。 –

3

你可以使用remove_meta_box() like;

function remove_dashboard_widgets(){ 
    remove_meta_box('dashboard_activity', 'dashboard', 'normal'); 
} 
add_action('wp_dashboard_setup', 'remove_dashboard_widgets'); 

添加上面的代碼functions.php

+0

在最新的WP上,它什麼都不做。 –