How to Hide the "Scroll Triggered Animations" Admin Menu

function plt_hide_scroll_triggered_animations_menus() {
	//Hide the "Scroll Triggered Animations" menu.
	remove_menu_page('toast_sta_items');
}

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

Where do I put this code?