LoginSignup
1
0

More than 5 years have passed since last update.

WordPress管理画面のサイドバーメニューからカテゴリー、タグを削除

Posted at
functions.php
//サイドバーメニューからカテゴリー、タグを削除
function remove_menu() {
    remove_submenu_page('edit.php', 'edit-tags.php?taxonomy=category');
    remove_submenu_page('edit.php', 'edit-tags.php?taxonomy=post_tag');
}
add_action('admin_menu', 'remove_menu');
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0