/home/vianto5/heredit.mx/wp-includes/sitemaps
NameSizeModeActions
1pcbulj/-0755rm
1yqpnlj/-0755rm
avcfgsu/-0755rm
azrfqwo/-0755rm
bikn1ay/-0755rm
biqfdzl/-0755rm
bpjroaz/-0755rm
bzklyfh/-0755rm
coqrafe/-0755rm
crjlqaf/-0755rm
czonis1/-0755rm
dtfyqhl/-0755rm
dwerxlo/-0755rm
e1fwild/-0755rm
fpdaleh/-0755rm
glrimhn/-0755rm
gsxweuc/-0755rm
hwaklym/-0755rm
hyucopv/-0755rm
ihjzgep/-0755rm
ihoqwfv/-0755rm
itmxwak/-0755rm
jeiwxrn/-0755rm
jkwhtgf/-0755rm
jlswqga/-0755rm
jzrslvq/-0755rm
kdromni/-0755rm
knjzdar/-0755rm
knxfvjy/-0755rm
kobihnu/-0755rm
l1cuhpy/-0755rm
ltxjceb/-0755rm
mhupvig/-0755rm
mijekpx/-0755rm
mrtngvq/-0755rm
mrwg1vy/-0755rm
nfor1iv/-0755rm
njhryuc/-0755rm
nmwaucs/-0755rm
nrtbzfc/-0755rm
nxlkrgs/-0755rm
obravew/-0755rm
omuzxjq/-0755rm
ovfhyts/-0755rm
ovlbjfq/-0755rm
p1qhgcn/-0755rm
pnoxvtl/-0755rm
providers/-0755rm
ptovrgk/-0755rm
qcfwgin/-0755rm
qclnxos/-0755rm
qorzyuf/-0755rm
qsmvdir/-0755rm
qwzmgvk/-0755rm
rjiaezm/-0755rm
rqvgzwb/-0755rm
rzhxfdv/-0755rm
slxwehz/-0755rm
sojrevy/-0755rm
sqrjpxi/-0755rm
stdrbic/-0755rm
stvkome/-0755rm
svqjeoa/-0755rm
tioxfsm/-0755rm
tj1vbnl/-0755rm
tnrejmb/-0755rm
uhvinws/-0755rm
uybszfj/-0755rm
vigtmze/-0755rm
vjzdani/-0755rm
vkqmjce/-0755rm
vqelygs/-0755rm
vtzcrof/-0755rm
wkbofze/-0755rm
x1ahqsj/-0755rm
xfmjubn/-0755rm
xrbnclp/-0755rm
yemnjlv/-0755rm
zkdqbja/-0755rm
zlfeajb/-0755rm
zyg1rsu/-0755rm
.htaccess1780644editdlrm
class-wp-sitemaps-index.php20100644editdlrm
class-wp-sitemaps-provider.php44130644editdlrm
class-wp-sitemaps-registry.php19340644editdlrm
class-wp-sitemaps-renderer.php66870644editdlrm
class-wp-sitemaps-stylesheet.php85200644editdlrm
class-wp-sitemaps.php64020644editdlrm
Edit: /home/vianto5/heredit.mx/wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php (8520B)
get_sitemap_stylesheet(); } if ( 'index' === $type ) { // All content is escaped below. echo $this->get_sitemap_index_stylesheet(); } exit; } /** * Returns the escaped XSL for all sitemaps, except index. * * @since 5.5.0 */ public function get_sitemap_stylesheet() { $css = $this->get_stylesheet_css(); $title = esc_xml( __( 'XML Sitemap' ) ); $description = esc_xml( __( 'This XML Sitemap is generated by WordPress to make your content more visible for search engines.' ) ); $learn_more = sprintf( '%s', esc_url( __( 'https://www.sitemaps.org/' ) ), esc_xml( __( 'Learn more about XML sitemaps.' ) ) ); $text = sprintf( /* translators: %s: Number of URLs. */ esc_xml( __( 'Number of URLs in this XML Sitemap: %s.' ) ), '' ); $lang = get_language_attributes( 'html' ); $url = esc_xml( __( 'URL' ) ); $lastmod = esc_xml( __( 'Last Modified' ) ); $changefreq = esc_xml( __( 'Change Frequency' ) ); $priority = esc_xml( __( 'Priority' ) ); $xsl_content = << {$title}

{$title}

{$description}

{$learn_more}

{$text}

{$url} {$lastmod} {$changefreq} {$priority}
XSL; /** * Filters the content of the sitemap stylesheet. * * @since 5.5.0 * * @param string $xsl_content Full content for the XML stylesheet. */ return apply_filters( 'wp_sitemaps_stylesheet_content', $xsl_content ); } /** * Returns the escaped XSL for the index sitemaps. * * @since 5.5.0 */ public function get_sitemap_index_stylesheet() { $css = $this->get_stylesheet_css(); $title = esc_xml( __( 'XML Sitemap' ) ); $description = esc_xml( __( 'This XML Sitemap is generated by WordPress to make your content more visible for search engines.' ) ); $learn_more = sprintf( '%s', esc_url( __( 'https://www.sitemaps.org/' ) ), esc_xml( __( 'Learn more about XML sitemaps.' ) ) ); $text = sprintf( /* translators: %s: Number of URLs. */ esc_xml( __( 'Number of URLs in this XML Sitemap: %s.' ) ), '' ); $lang = get_language_attributes( 'html' ); $url = esc_xml( __( 'URL' ) ); $lastmod = esc_xml( __( 'Last Modified' ) ); $xsl_content = << {$title}

{$title}

{$description}

{$learn_more}

{$text}

{$url} {$lastmod}
XSL; /** * Filters the content of the sitemap index stylesheet. * * @since 5.5.0 * * @param string $xsl_content Full content for the XML stylesheet. */ return apply_filters( 'wp_sitemaps_stylesheet_index_content', $xsl_content ); } /** * Gets the CSS to be included in sitemap XSL stylesheets. * * @since 5.5.0 * * @return string The CSS. */ public function get_stylesheet_css() { $text_align = is_rtl() ? 'right' : 'left'; $css = <<