/home/vianto5/duettowers.mx/wp-includes/sitemaps
NameSizeModeActions
1ceqxtp/-0755rm
1uosgzt/-0755rm
1wxyoge/-0755rm
acxleug/-0755rm
ainldsr/-0755rm
brnctay/-0755rm
bryzkwq/-0755rm
buynwmf/-0755rm
ctnxeyw/-0755rm
d1zfghn/-0755rm
dckomhw/-0755rm
dgyjceq/-0755rm
downqav/-0755rm
ehk1sny/-0755rm
euhjvnd/-0755rm
evzuhqs/-0755rm
ewgzcmf/-0755rm
ewhiurc/-0755rm
ezbtdav/-0755rm
ezmqlsr/-0755rm
fhisjkc/-0755rm
fxct1qa/-0755rm
fz1vykg/-0755rm
gkrjusp/-0755rm
hgdvfyk/-0755rm
hqdeb1a/-0755rm
htgsjcw/-0755rm
hufl1ws/-0755rm
huktlzo/-0755rm
hurnl1i/-0755rm
hwxkm1i/-0755rm
ia1vkte/-0755rm
icjkpwg/-0755rm
ictexrj/-0755rm
inhtrsz/-0755rm
irgtyol/-0755rm
iyklaxg/-0755rm
jbpefkq/-0755rm
jyhwgc1/-0755rm
kevs1jf/-0755rm
kfahosc/-0755rm
kvyhzen/-0755rm
kyqdpts/-0755rm
kyzsev1/-0755rm
lcazrby/-0755rm
lepkuny/-0755rm
lyijmgr/-0755rm
mplwghd/-0755rm
n1ijzsd/-0755rm
nabhelq/-0755rm
nfbwx1r/-0755rm
nqjdhzs/-0755rm
oepjvfh/-0755rm
oipwbal/-0755rm
oiusbdt/-0755rm
oxausqp/-0755rm
pfgmvzl/-0755rm
powksir/-0755rm
pqmezlo/-0755rm
providers/-0755rm
puxsckl/-0755rm
pwdfbse/-0755rm
pyignkj/-0755rm
pyvjfol/-0755rm
qibsdc1/-0755rm
qlcofvx/-0755rm
qljiwyr/-0755rm
qthspwd/-0755rm
qvtoauy/-0755rm
rxulmje/-0755rm
sehxmpv/-0755rm
sinjbuc/-0755rm
syjfnrw/-0755rm
tbrxuji/-0755rm
tkuoiah/-0755rm
trspcqe/-0755rm
twlapzb/-0755rm
ufrysdq/-0755rm
uonlbqf/-0755rm
upksndo/-0755rm
vzqktf1/-0755rm
w1mcdzg/-0755rm
weurmhv/-0755rm
wlmjyrz/-0755rm
wp1octm/-0755rm
xgyonvl/-0755rm
xhiylga/-0755rm
xhqstnb/-0755rm
xkznavg/-0755rm
yqlfbxn/-0755rm
yskwrzc/-0755rm
yuhiaqe/-0755rm
yvlzhpu/-0755rm
yxczhtm/-0755rm
zfdcjbr/-0755rm
zhcrigy/-0755rm
zkvfsab/-0755rm
zlxojku/-0755rm
zokxpja/-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/duettowers.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 = <<