How to Hide the "SEO合集" Admin Menu

function plt_hide_baiduseo_menus() {
	//Hide the "SEO合集" menu.
	remove_menu_page('baiduseo');
}

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

Where do I put this code?