// Register 2-hour interval
add_filter('cron_schedules', function($schedules) {
    $schedules['every_2_hours'] = [
        'interval' => 7200,
        'display'  => 'Every 2 Hours'
    ];
    return $schedules;
});

// Schedule the event
add_action('wp', function() {
    if (!wp_next_scheduled('clean_actionscheduler_logs')) {
        wp_schedule_event(time(), 'every_2_hours', 'clean_actionscheduler_logs');
    }
});

// Run the cleanup
add_action('clean_actionscheduler_logs', function() {
    global $wpdb;
    $wpdb->query("
        DELETE FROM {$wpdb->prefix}actionscheduler_logs 
        WHERE log_date_gmt < NOW() - INTERVAL 2 DAY
    ");
});

<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//shopglowscents.com/wp-content/plugins/wordpress-seo/css/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://shopglowscents.com/post-sitemap.xml</loc>
		<lastmod>2026-04-30T04:19:27+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://shopglowscents.com/page-sitemap.xml</loc>
		<lastmod>2026-05-14T03:52:51+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://shopglowscents.com/product-sitemap.xml</loc>
		<lastmod>2026-06-02T17:32:26+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://shopglowscents.com/product-sitemap2.xml</loc>
		<lastmod>2026-04-20T17:16:46+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://shopglowscents.com/product-sitemap3.xml</loc>
		<lastmod>2026-06-02T17:32:26+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://shopglowscents.com/category-sitemap.xml</loc>
		<lastmod>2026-04-30T04:19:27+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://shopglowscents.com/post_tag-sitemap.xml</loc>
		<lastmod>2026-04-30T04:13:59+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://shopglowscents.com/product_cat-sitemap.xml</loc>
		<lastmod>2026-06-02T17:32:26+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://shopglowscents.com/product_tag-sitemap.xml</loc>
		<lastmod>2026-06-02T17:32:26+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://shopglowscents.com/author-sitemap.xml</loc>
		<lastmod>2026-05-14T03:39:44+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Yoast SEO -->