How to Hide the "Career Portal" Admin Menu

function plt_hide_bullhorn_oscp_menus() {
	//Hide the "Plugins → Career Portal" menu.
	remove_submenu_page('plugins.php', 'bullhorn-oscp');
}

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

Where do I put this code?