Under Function.php file add add_theme_support(‘post-thumbnails’);
//Function To Inyect <head> Start
function custom_features(){
//register_nav_menu('customMenuLocation', 'Custom Nav Menu Location');
//Will use only footer menus
register_nav_menu('customFooterLocationOne', 'Custom Footer Menu Location One');
register_nav_menu('customFooterLocationTwo', 'Custom Footer Menu Location Two');
add_theme_support('title-tag');
//Add Featured Image To Blog Pages
add_theme_support('post-thumbnails');
}
//Trigger Function custom_features()
add_action('after_setup_theme', 'custom_features');
//Inyect <head> End