Testing Suspended

Testing of this plugin has been temporarily suspended due to an error. It will automatically resume when a new plugin version is released.

How to Hide Post Slider and Carousel with Widget Admin Menus

function plt_hide_post_slider_and_carousel_menus() {
	//Hide "Post Slider and Carousel".
	remove_menu_page('psac-about');
	//Hide "Post Slider and Carousel → Post Slider and Carousel".
	remove_submenu_page('psac-about', 'psac-about');
	//Hide "Post Slider and Carousel → Shortcode Builder".
	remove_submenu_page('psac-about', 'psac-shrt-generator');
	//Hide "Post Slider and Carousel → Contact Us".
	remove_submenu_page('psac-about', 'psac-about-contact');
	//Hide "Post Slider and Carousel → Support Forum".
	remove_submenu_page('psac-about', 'psac-about-wp-support-forum');
	//Hide "Post Slider and Carousel → Upgrade".
	remove_submenu_page('psac-about', 'psac-about-pricing');
}

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

Where do I put this code?