Skip to content

Instantly share code, notes, and snippets.

@regepan
Created January 14, 2014 04:10
Show Gist options
  • Save regepan/8412910 to your computer and use it in GitHub Desktop.
Save regepan/8412910 to your computer and use it in GitHub Desktop.
<?php
function remove_menu() {
global $menu;
var_dump($menu);// この中にremove_menu_page()に何を渡せばいいのかがわかる文字列が入っている。
remove_menu_page('index.php'); // ダッシュボードが消える。
}
add_action('admin_menu', 'remove_menu');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment