@sorayacge: Yes, the above code will only change featured image size.
Go to => Child Theme Folder => functions.php and the following Code.
function child_theme_setup() {
add_image_size( 'slider', 1600, 600, true ); //Featured Post Slider Image
add_image_size( 'featured', 800, 324, true ); //Featured Image
add_image_size( 'small-featured', 400, 267, true ); //Small Featured Image
}
add_action( 'after_setup_theme', 'child_theme_setup', 11 );
You can change the images size of the above.
Let me know if this helps you out!
Kind Regards,
Skandha