Add thumbnail support restricted wordpress

function theme_add_thumbnail_support() {
    /**
     * Add thumbnails only to post and page post type
     * */
    add_theme_support( 'post-thumbnails', array('post', 'page') );
}

add_action( 'after_setup_theme', 'theme_add_thumbnail_support' );