Add thumbnail support WordPress

function theme_add_thumbnail_support() {
    add_theme_support( 'post-thumbnails' );
}

add_action( 'after_setup_theme', 'theme_add_thumbnail_support' );