Skip to content

Instantly share code, notes, and snippets.

@hykw
Created July 18, 2014 09:54
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 hykw/3e43d3e62d34bb7e718e to your computer and use it in GitHub Desktop.
Save hykw/3e43d3e62d34bb7e718e to your computer and use it in GitHub Desktop.
wordpress: 投稿画面の項目非表示
function remove_default_post_screen_metaboxes() {
remove_meta_box( 'tagsdiv-post_tag' , 'post' , 'side' ); /* 投稿のタグ */
}
add_action('admin_menu','remove_default_post_screen_metaboxes');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment