How to Hide the "Chat Link" Admin Menu

function plt_hide_chat_link_menus() {
	//Hide the "Chat Link" menu.
	remove_menu_page('chat-link');
}

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

Where do I put this code?