// Permitir que el Custom Post Type 'zonazen' aparezca en el selector de página de inicio
add_filter('get_pages', function($pages) {
    if (is_admin() && isset($_GET['page']) && $_GET['page'] === 'reading') {
        $cpt_posts = get_posts([
            'post_type' => 'zonazen',
            'posts_per_page' => -1,
            'post_status' => 'publish',
        ]);
        $pages = array_merge($pages, $cpt_posts);
    }
    return $pages;
});

// También añadir soporte para que WordPress lo reconozca como página estática
add_filter('wp_unique_post_slug', function($slug, $post_ID, $post_status, $post_type) {
    if ($post_type === 'zonazen') {
        // Evitar conflictos de slug con páginas normales
    }
    return $slug;
}, 10, 4);<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//zonazenjc.com/wp-content/plugins/wordpress-seo/css/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://zonazenjc.com/page-sitemap.xml</loc>
		<lastmod>2026-04-17T09:11:45+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://zonazenjc.com/e-landing-page-sitemap.xml</loc>
		<lastmod>2023-10-17T15:53:32+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://zonazenjc.com/zonazen-sitemap.xml</loc>
		<lastmod>2026-06-03T09:44:10+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://zonazenjc.com/product_cat-sitemap.xml</loc>
		<lastmod>2023-12-14T19:12:07+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://zonazenjc.com/author-sitemap.xml</loc>
		<lastmod>2026-03-18T15:57:20+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Yoast SEO -->