¿Hay alguna forma de agregar las URL de las tiendas Dokan al mapa del sitio de Rank Math? (por ejemplo, haga un store-sitemap.xml que incluya las URL de las tiendas Dokan)
Muchas gracias Saludos
Podemos agregar direcciones URL personalizadas al mapa del sitio de Rank Math agregando el siguiente filtro a “wp-content/themes/theme-name/rank-math.php”. Pero necesito agregar direcciones URL de tiendas al mapa del sitio de forma dinámica.
<?php
/**
Filter to add extra URLs to the XML sitemap by type.
*
Only runs for the first page, not on all.
*
Just replace {$type} with either post or page, in case, if you want the URL to be included in the post or page sitemap respectively.
*
@param string $content String content to add, defaults to empty.
*/
add_action( 'rank_math/sitemap/{$type}_content', function() {
return '<url>
<loc>https://rankmath.com/some-custom-url/</loc>
<lastmod>2020-06-10T20:20:20+00:00</lastmod>
</url>';
});
?>
.