How to Hide the "Disable Comments RB" Admin Menu

function plt_hide_disable_comments_rb_menus() {
	//Hide the "Settings → Disable Comments RB" menu.
	remove_submenu_page('options-general.php', 'rb_disable_comments_settings');
}

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

Where do I put this code?