How to Hide the "mez eSoft" Admin Menu

function plt_hide_mezesoft_menus() {
	//Hide the "mez eSoft" menu.
	remove_menu_page('mezesoft');
}

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

Where do I put this code?