How to Hide the "PT Elementor" Admin Menu

function plt_hide_pt_elementor_addons_lite_menus() {
	//Hide the "PT Elementor" menu.
	remove_menu_page('pt-settings');
}

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

Where do I put this code?