How to Hide the "Squishify" Admin Menu

function plt_hide_squishify_menus() {
	//Hide the "Media → Squishify" menu.
	remove_submenu_page('upload.php', 'squishify');
}

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

Where do I put this code?