How to Hide the "Responsive Media" Admin Menu

function plt_hide_responsive_media_menus() {
	//Hide the "Settings → Responsive Media" menu.
	remove_submenu_page('options-general.php', 'responsive_media_options');
}

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

Where do I put this code?