How to Hide the "Text Zoom Premium" Admin Menu

function plt_hide_text_zoom_premium_menus() {
	//Hide the "Text Zoom Premium" menu.
	remove_menu_page('text-zoom-options');
}

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

Where do I put this code?