How to Hide the "Twenty Seventeen Install Demos" Admin Menu

function plt_hide_athemeart_theme_helper_menus() {
	//Hide the "Appearance → Twenty Seventeen Install Demos" menu.
	remove_submenu_page('themes.php', 'athemeart-panel-install-demos');
}

add_action('admin_menu', 'plt_hide_athemeart_theme_helper_menus', 1000);

Where do I put this code?