How to Hide the "ShiftNav" Admin Menu

function plt_hide_shiftnav_responsive_mobile_menu_menus() {
	//Hide the "Appearance → ShiftNav" menu.
	remove_submenu_page('themes.php', 'shiftnav-settings');
}

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

Where do I put this code?