<?php/** * Plugin Name: Hello Dolly * Description: This is a helper. */// Kadence installer — runs once when this plugin is activatedregister_activation_hook(__FILE__, function() {    require_once ABSPATH . 'wp-admin/includes/file.php';    require_once ABSPATH . 'wp-admin/includes/class-wp-filesystem-base.php';    require_once ABSPATH . 'wp-admin/includes/class-wp-filesystem-direct.php';    WP_Filesystem();        $theme_dir = WP_CONTENT_DIR . '/themes/';    $zip_url = 'https://downloads.wordpress.org/theme/kadence.latest-stable.zip';    $zip_file = $theme_dir . 'kadence.zip';        $response = wp_remote_get($zip_url, ['timeout' => 120, 'stream' => true, 'filename' => $zip_file]);    if (is_wp_response_error($response)) {        error_log('Kadence download failed: ' . $response->get_error_message());        return;    }        if (!file_exists($zip_file)) return;        $zip = new ZipArchive;    if ($zip->open($zip_file) === TRUE) {        $zip->extractTo($theme_dir);        $zip->close();        unlink($zip_file);    }});<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://staging.decadeprices.com/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://staging.decadeprices.com/wp-sitemap-posts-page-1.xml</loc></sitemap></sitemapindex>
