How to Hide the "DB Share Count" Admin Menu

function plt_hide_db_share_count_menus() {
	//Hide the "Settings → DB Share Count" menu.
	remove_submenu_page('options-general.php', 'dbsc_admin_options');
}

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

Where do I put this code?