/home/vianto5/bora.mx/wp-includes/sitemaps
NameSizeModeActions
1iwjtuh/-0755rm
1kxywum/-0755rm
1rmhiue/-0755rm
1tepmnx/-0755rm
1vnhgmo/-0755rm
bafriek/-0755rm
bhlqkyo/-0755rm
blyz1rf/-0755rm
bsu1qko/-0755rm
cxalqup/-0755rm
cxuqomd/-0755rm
dfqhvye/-0755rm
djfp1cy/-0755rm
dmpfbwq/-0755rm
dqiyfoj/-0755rm
dqpnyaj/-0755rm
earhckp/-0755rm
eq1rcoj/-0755rm
g1kfnjl/-0755rm
gexvwmq/-0755rm
gpakhmd/-0755rm
gratlnk/-0755rm
gxenftc/-0755rm
h1sinyv/-0755rm
hm1qykx/-0755rm
iebxyjp/-0755rm
ihnwmro/-0755rm
iszdnfq/-0755rm
jcqxyub/-0755rm
jhotxbz/-0755rm
jlfxdnt/-0755rm
jnrye1x/-0755rm
jrlwsbn/-0755rm
jru1cfw/-0755rm
kczodus/-0755rm
knqxacp/-0755rm
l1euhqk/-0755rm
lmunkrc/-0755rm
lqdagou/-0755rm
ltfoxds/-0755rm
lwjynxf/-0755rm
mg1faep/-0755rm
mglu1it/-0755rm
nrbfwoy/-0755rm
nycgxqh/-0755rm
oahqnis/-0755rm
om1vfne/-0755rm
otgxsbw/-0755rm
pakrohu/-0755rm
pmvjzlu/-0755rm
providers/-0755rm
pxdmqbo/-0755rm
pydasxh/-0755rm
qbokady/-0755rm
qcnsxgw/-0755rm
qkvdftr/-0755rm
qlfhgav/-0755rm
qvklrai/-0755rm
r1evkbi/-0755rm
rcqhlkv/-0755rm
rlhszm1/-0755rm
roljgnt/-0755rm
rpjveds/-0755rm
rptbhu1/-0755rm
rqdikmv/-0755rm
rxwjksf/-0755rm
saw1hxe/-0755rm
sutzevh/-0755rm
szvebth/-0755rm
tbyfpre/-0755rm
tdnpqky/-0755rm
tnjlbqi/-0755rm
ts1nzpb/-0755rm
tsepbud/-0755rm
tuiqhec/-0755rm
uenczqt/-0755rm
ufalzhb/-0755rm
varmkl1/-0755rm
visupdo/-0755rm
vlrfjqi/-0755rm
vsmypek/-0755rm
wnbagfh/-0755rm
wnemvrf/-0755rm
xmrzawv/-0755rm
yc1wbuz/-0755rm
ykonj1v/-0755rm
z1fdvmx/-0755rm
zdhlyau/-0755rm
zsvig1o/-0755rm
ztyevqu/-0755rm
zwxinco/-0755rm
zxntqb1/-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/bora.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 = <<