How to Hide the "评论内容审核设置" Admin Menu

function plt_hide_baidu_textcensor_menus() {
	//Hide the "Settings → 评论内容审核设置" menu.
	remove_submenu_page('options-general.php', 'Baidu_Text_Censor');
}

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

Where do I put this code?