Last active
August 3, 2016 16:50
-
-
Save tehillim/7fe91551cb754c274872cf4eaa5ffc43 to your computer and use it in GitHub Desktop.
워드프레스 대쉬보드(알림판)에서 사이트 현황판 없애는 방법
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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