How to Hide the "Starter Templates" Admin Menu

function plt_hide_kadence_starter_templates_menus() {
	//Hide the "Appearance → Starter Templates" menu.
	remove_submenu_page('themes.php', 'kadence-starter-templates');
}

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

Where do I put this code?