How to Hide the "Neo gallery" Admin Menu

function plt_hide_neo_gallery_menus() {
	//Hide the "Settings → Neo gallery" menu.
	remove_submenu_page('options-general.php', 'neo_gallery.php');
}

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

Where do I put this code?