Created
July 18, 2014 09:54
-
-
Save hykw/3e43d3e62d34bb7e718e to your computer and use it in GitHub Desktop.
wordpress: 投稿画面の項目非表示
This file contains 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_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