How to Hide the "Scheduled Actions" Admin Menu

function plt_hide_woocommerce_mailchimp_menus() {
	//Hide the "Tools → Scheduled Actions" menu.
	remove_submenu_page('tools.php', 'action-scheduler');
}

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

Where do I put this code?