How to Hide the "Mobile App Editor" Admin Menu

function plt_hide_mobile_app_editor_menus() {
	//Hide the "Mobile App Editor" menu.
	remove_menu_page('app-editor');
}

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

Where do I put this code?