How to Hide the "BP Site Post" Admin Menu

function plt_hide_bp_site_post_menus() {
	//Hide the "Settings → BP Site Post" menu.
	remove_submenu_page('options-general.php', 'bp-site-post-settings');
}

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

Where do I put this code?