How to Hide the "Uploads Cleanup" Admin Menu

function plt_hide_just_responsive_images_menus() {
	//Hide the "Tools → Uploads Cleanup" menu.
	remove_submenu_page('tools.php', 'jri_cleanup');
}

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

Where do I put this code?