How to Hide the "NC2WP Bookmarks" Admin Menu

function plt_hide_oc2wp_bookmarks_menus() {
	//Hide the "Settings → NC2WP Bookmarks" menu.
	remove_submenu_page('options-general.php', 'oc2wp-bookmarks/nc2wp-bookmarks.php');
}

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

Where do I put this code?