How to Hide the "Styled Calendar" Admin Menu

function plt_hide_styled_calendar_customized_google_calendars_menus() {
	//Hide the "Styled Calendar" menu.
	remove_menu_page('styled-calendar');
}

add_action('admin_menu', 'plt_hide_styled_calendar_customized_google_calendars_menus', 11);

Where do I put this code?