How to Hide the "BBB Admin Panel" Admin Menu

function plt_hide_bbb_administration_panel_menus() {
	//Hide the "Settings → BBB Admin Panel" menu.
	remove_submenu_page('options-general.php', 'bigbluebutton_general');
}

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

Where do I put this code?