How to Hide the "Divi Post Carousel" Admin Menu

function plt_hide_post_carousel_divi_menus() {
	//Hide the "Divi Post Carousel" menu.
	remove_menu_page('lwp_post_carousel');
}

add_action('admin_menu', 'plt_hide_post_carousel_divi_menus', 1000000000);

Where do I put this code?