Remove author post metabox
wordpress snippet
Adding this PHP code to the functions.php will remove the author metabox from the admin post page.
snippet : PHPcopy
function remove_default_post_screen_metaboxes() {
remove_meta_box( 'authordiv','post','normal' );
}
add_action('admin_menu','remove_default_post_screen_metaboxes');












Pingback: Tweets that mention Wordpress Remove author post metabox – wpsnipp.com Wordpress code snippets for your blog -- Topsy.com