Understanding WordPress’ post type support

When you register post type, you can choose what support you need. For Example:

function codex_custom_init() {
    $args = array( 'public' => true, 'label' => 'Books', 'supports' => array( 'title', 'editor' ) );
    register_post_type( 'book', $args );
}
add_action( 'init', 'codex_custom_init' )

In this way you will create post type Books only with Title Option and Editor