How to Hide the "Social Mobile Messaging Bar" Admin Menu

function plt_hide_social_mobile_messaging_bar_menus() {
	//Hide the "Social Mobile Messaging Bar" menu.
	remove_menu_page('zb_smt');
}

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

Where do I put this code?