清理仪表板元框
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了清理仪表板元框相关的知识,希望对你有一定的参考价值。
Remove all those boxes on the Wordpress Dashboard
/** ******** ******** ******** ******** ******** ******** ******** ******** * TITLE: Clean up Wordpress Dashboard * DESCRIPTION: Remove all those boxes on the Wordpress Dashboard * * http://codex.wordpress.org/Function_Reference/remove_meta_box */ function remove_dashboard_meta() { remove_meta_box( 'dashboard_incoming_links', 'dashboard', 'normal' ); remove_meta_box( 'dashboard_plugins', 'dashboard', 'normal' ); remove_meta_box( 'dashboard_primary', 'dashboard', 'normal' ); remove_meta_box( 'dashboard_secondary', 'dashboard', 'normal' ); remove_meta_box( 'dashboard_incoming_links', 'dashboard', 'normal' ); remove_meta_box( 'dashboard_quick_press', 'dashboard', 'side' ); remove_meta_box( 'dashboard_recent_drafts', 'dashboard', 'side' ); remove_meta_box( 'dashboard_recent_comments', 'dashboard', 'normal' ); remove_meta_box( 'dashboard_right_now', 'dashboard', 'normal' ); remove_meta_box( 'dashboard_activity', 'dashboard', 'normal' ); } add_action( 'admin_init', 'remove_dashboard_meta' );
以上是关于清理仪表板元框的主要内容,如果未能解决你的问题,请参考以下文章