How to Hide Disable Comments Admin Menus

function plt_hide_comments_plus_menus() {
	//Hide the "Settings → Disable comments" menu.
	remove_submenu_page('options-general.php', 'comments-wbcr_comments_plus');
	//Hide the "Delete Comments" menu.
	remove_menu_page('delete_comments-wbcr_comments_plus');
}

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

Where do I put this code?