How to Hide Hostinger Admin Menus

function plt_hide_hostinger_menus() {
	//Hide the "Hostinger" menu.
	remove_menu_page('hostinger');
	//Hide the "Hostinger → Get started" menu.
	remove_submenu_page('hostinger', 'hostinger&#home');
	//Hide the "Hostinger → Learn" menu.
	remove_submenu_page('hostinger', 'hostinger&#learn');
}

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

Where do I put this code?