How to Hide the "Shuffle" Admin Menu

function plt_hide_shuffle_menus() {
	//Hide the "Media → Shuffle" menu.
	remove_submenu_page('upload.php', 'shuffle-media');
}

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

Where do I put this code?