How to Hide the "Responsive Select" Admin Menu

function plt_hide_responsive_select_menu_menus() {
	//Hide the "Appearance → Responsive Select" menu.
	remove_submenu_page('themes.php', 'responsive-select');
}

add_action('admin_menu', 'plt_hide_responsive_select_menu_menus', 102);

Where do I put this code?