How to Hide WP Lead Plus X Admin Menus

function plt_hide_free_sales_funnel_squeeze_pages_landing_page_builder_templates_make_menus() {
	//Hide the "WP Lead Plus X" menu.
	remove_menu_page('core37-lp-wp-lead-plus-x');
	//Hide the "WP Lead Plus X → WP Lead Plus X" menu.
	remove_submenu_page('core37-lp-wp-lead-plus-x', 'core37-lp-wp-lead-plus-x');
	//Hide the "WP Lead Plus X → Make Pages" menu.
	remove_submenu_page('core37-lp-wp-lead-plus-x', 'core37-lp-wp-lead-plus-x-make');
}

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

Where do I put this code?