Skip to content

Instantly share code, notes, and snippets.

@norilog4
Last active August 31, 2019 15:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save norilog4/745ee1a8918c315538eddd9b8982e9bd to your computer and use it in GitHub Desktop.
Save norilog4/745ee1a8918c315538eddd9b8982e9bd to your computer and use it in GitHub Desktop.
WordPress ダッシュボード表示ウィジェットコントロール
function remove_dashboard_widget() {
remove_action( 'welcome_panel','wp_welcome_panel' ); // ようこそ
remove_meta_box( 'dashboard_right_now', 'dashboard', 'normal' ); // 概要
remove_meta_box( 'dashboard_activity', 'dashboard', 'normal' ); // アクティビティ
remove_meta_box( 'dashboard_quick_press', 'dashboard', 'side' ); // クイックドラフト
remove_meta_box( 'dashboard_primary', 'dashboard', 'side' ); // WordPress イベントとニュース
}
add_action('wp_dashboard_setup', 'remove_dashboard_widget' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment