How to Hide the "Rezgo" Admin Menu

function plt_hide_rezgo_menus() {
	//Hide the "Rezgo" menu.
	remove_menu_page('rezgo-settings');
}

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

Where do I put this code?