How to Hide the "Hostinger Reach" Admin Menu

function plt_hide_hostinger_reach_menus() {
	//Hide the "Hostinger Reach" menu.
	remove_menu_page('hostinger-reach');
}

add_action('admin_menu', 'plt_hide_hostinger_reach_menus', 1000);

Where do I put this code?