How to Hide the "Fancybox for WP" Admin Menu

function plt_hide_fancybox_for_wordpress_menus() {
	//Hide the "Settings → Fancybox for WP" menu.
	remove_submenu_page('options-general.php', 'fancybox-for-wordpress');
}

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

Where do I put this code?