How to Hide the "Mailazy" Admin Menu

function plt_hide_mailazy_menus() {
	//Hide the "Mailazy" menu.
	remove_menu_page('mailazy');
}

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

Where do I put this code?