How to Hide the "Resizefly" Admin Menu

function plt_hide_resizefly_menus() {
	//Hide the "Media → Resizefly" menu.
	remove_submenu_page('upload.php', 'resizefly');
}

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

Where do I put this code?