updated   : April 22, 2013
we now have 608 snippets

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');