//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');
//Add custom size images name, width px, height px, Crop? TRUE, or array('left','top') etc...
add_image_size('professorLandscape', 400, 260, array('center', 'center'));
add_image_size('professorPortrait', 480, 650, true);
//Add Image Crop For Page Banner
add_image_size('pageBanner', 1500, 350, true);
}
//Trigger Function custom_features()
add_action('after_setup_theme', 'custom_features');
//Inyect <head> End