hide default post body field in backend

Is there a easy non-css-hacking way to hide the default post body field in the dashboard?

I simply want to have the title field and some adv. custom fields but remove the default post body field.

Topic post-type-support admin Wordpress

Category Web


add_action('init', 'init_remove_support',100);
function init_remove_support()
{
   $post_type = 'your post type';
   remove_post_type_support( $post_type, 'editor');
}

Add this to your themes functions.php and it should take care of it. cheers :)

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.