```

//---------------------------------------------------------------------------------------------------------
add_action('template_redirect', 'contar_visitas_producto');
function contar_visitas_producto() {
    if (is_product()) {
        global $post;
        $visitas = get_post_meta($post->ID, '_visitas_producto', true);
        $visitas = $visitas ? $visitas + 1 : 1;
        update_post_meta($post->ID, '_visitas_producto', $visitas);
    }
}
//---------------------------------------------------------------------------------------------------------
add_action('woocommerce_single_product_summary', 'mostrar_visitas_producto', 25);
function mostrar_visitas_producto() {
    global $post;
    $visitas = get_post_meta($post->ID, '_visitas_producto', true);
    echo '<p><strong>Visitas:</strong> ' . intval($visitas) . '</p>';
}


?>


<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://cyberdepot.com.mx/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://cyberdepot.com.mx/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://cyberdepot.com.mx/wp-sitemap-posts-product-1.xml</loc></sitemap><sitemap><loc>https://cyberdepot.com.mx/wp-sitemap-posts-product-2.xml</loc></sitemap><sitemap><loc>https://cyberdepot.com.mx/wp-sitemap-posts-product-3.xml</loc></sitemap><sitemap><loc>https://cyberdepot.com.mx/wp-sitemap-taxonomies-product_brand-1.xml</loc></sitemap><sitemap><loc>https://cyberdepot.com.mx/wp-sitemap-taxonomies-product_cat-1.xml</loc></sitemap><sitemap><loc>https://cyberdepot.com.mx/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
