Skip to content

Instantly share code, notes, and snippets.

@tehillim
Last active August 3, 2016 16:50
Show Gist options
  • Select an option

  • Save tehillim/7fe91551cb754c274872cf4eaa5ffc43 to your computer and use it in GitHub Desktop.

Select an option

Save tehillim/7fe91551cb754c274872cf4eaa5ffc43 to your computer and use it in GitHub Desktop.
워드프레스 대쉬보드(알림판)에서 사이트 현황판 없애는 방법
function remove_dashboard_widgets() {
remove_meta_box( 'dashboard_right_now', 'dashboard', 'normal' ); // Right Now
}
add_action('wp_dashboard_setup', 'remove_dashboard_widgets');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment