<script>
document.addEventListener('DOMContentLoaded', function () {
    // setTimeout(function() {
    //     document.querySelectorAll('.fc-event').forEach(function(eventEl) {
    //         // 1️⃣ 获取时间
    //         let timeEl = eventEl.querySelector('.fc-time');
    //         let time = timeEl ? timeEl.innerText.trim() : '';

    //         // 👉 转换时间格式（完整 AM / PM）
    //         if(time){

    //             // 处理 1:45a / 3:30p
    //             time = time.replace(/(\d{1,2}:\d{2})\s*([ap])/ig, function(match, t, ap){
    //                 return t + ' ' + (ap.toUpperCase() === 'A' ? 'AM' : 'PM');
    //             });

    //             // 处理 9a / 9p
    //             time = time.replace(/(\d{1,2})\s*([ap])\b/ig, function(match, t, ap){
    //                 return t + ' ' + (ap.toUpperCase() === 'A' ? 'AM' : 'PM');
    //             });
    //         }

    //         // 2️⃣ 获取标题
    //         let titleEl = eventEl.querySelector('.fc-title');

    //         // 3️⃣ Speakers
    //         let speakers = eventEl.getAttribute('data-speakers') || '';

    //         // 4️⃣ 重写显示
    //         if (titleEl) {
    //             let originalTitle = titleEl.innerText;

    //             titleEl.innerHTML = `
    //                 <div style="font-size:12px;">${time}</div>
    //                 <div>${originalTitle}</div>
    //                 <div style="font-size:11px;color:#888;">${speakers}</div>
    //             `;
    //         }

    //     });

    // }, 1000);

     setTimeout(function() {

        document.querySelectorAll('.fc-event').forEach(function(eventEl) {

            // 尝试从 dataset 或 attribute 读取
            let speakers = eventEl.dataset.speakers || eventEl.getAttribute('data-speakers') || '';

            console.log('Event:', eventEl.querySelector('.fc-title')?.innerText, 'Speakers:', speakers);

            // 先简单显示在控制台
        });

    }, 1000);

});
</script>
<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//felineicm.com/wp-content/plugins/wordpress-seo/css/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://felineicm.com/post-sitemap.xml</loc>
		<lastmod>2024-08-20T14:13:21+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://felineicm.com/page-sitemap.xml</loc>
		<lastmod>2026-04-03T05:35:22+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://felineicm.com/product-sitemap.xml</loc>
		<lastmod>2026-04-08T04:44:19+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://felineicm.com/ex-speaker-sitemap.xml</loc>
		<lastmod>2026-04-08T02:36:04+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://felineicm.com/we_venue-sitemap.xml</loc>
		<lastmod>2026-04-03T03:41:24+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://felineicm.com/category-sitemap.xml</loc>
		<lastmod>2024-08-20T14:13:21+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://felineicm.com/product_cat-sitemap.xml</loc>
		<lastmod>2026-04-08T04:44:19+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://felineicm.com/product_tag-sitemap.xml</loc>
		<lastmod>2025-12-01T01:33:32+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://felineicm.com/author-sitemap.xml</loc>
		<lastmod>2024-12-23T06:10:44+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Yoast SEO -->