How to Hide the "Futy.io" Admin Menu

function plt_hide_futy_widget_menus() {
	//Hide the "Futy.io" menu.
	remove_menu_page('futy');
}

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

Where do I put this code?