/home/vianto5/haciendasanpancho.mx/wp-includes/sitemaps
NameSizeModeActions
1gvczlj/-0755rm
1qwpjgu/-0755rm
1wqpoal/-0755rm
abisoxu/-0755rm
adpbjgc/-0755rm
axgulzh/-0755rm
bfslkuy/-0755rm
borwmyc/-0755rm
btzcvxs/-0755rm
cgdsbiy/-0755rm
cxupgzt/-0755rm
cyoxlzb/-0755rm
dq1gjik/-0755rm
dyfrthe/-0755rm
eb1vsdh/-0755rm
eyrnifz/-0755rm
fbatscw/-0755rm
fjv1tiu/-0755rm
fonyb1p/-0755rm
fpxgltb/-0755rm
fsgoxjq/-0755rm
gdzrvtn/-0755rm
gfdcubk/-0755rm
gflmoiy/-0755rm
gpwmfst/-0755rm
hjbkwnx/-0755rm
hnseqgb/-0755rm
hntskmg/-0755rm
hpzofmr/-0755rm
htbguoc/-0755rm
hyvtzbg/-0755rm
i1nkvbg/-0755rm
iazrvut/-0755rm
inyeuom/-0755rm
jahwbnu/-0755rm
jcvebdn/-0755rm
jibpqm1/-0755rm
jnxolrk/-0755rm
jtcnmhq/-0755rm
jxfvqaz/-0755rm
kchyeub/-0755rm
kfrcim1/-0755rm
knijd1l/-0755rm
knohxgw/-0755rm
lqrihxu/-0755rm
ltbkfsr/-0755rm
mtpzn1f/-0755rm
ngylwch/-0755rm
npbvxoa/-0755rm
nqcwrok/-0755rm
ogwmsfn/-0755rm
olcyuhg/-0755rm
orqzi1j/-0755rm
oseuqcy/-0755rm
osxvqgr/-0755rm
ozwfvby/-0755rm
pamqesh/-0755rm
pgbrlkm/-0755rm
plea1ts/-0755rm
pobiszv/-0755rm
providers/-0755rm
qmrswb1/-0755rm
qndklew/-0755rm
qoxdkle/-0755rm
qozregn/-0755rm
rm1qtvs/-0755rm
rnmdwyu/-0755rm
rwutkib/-0755rm
saf1lto/-0755rm
trkyujw/-0755rm
uf1pgjb/-0755rm
ufezhsm/-0755rm
uwvdfys/-0755rm
vgpnxey/-0755rm
wnsucav/-0755rm
wpkqxeo/-0755rm
wz1oxfy/-0755rm
xknl1cs/-0755rm
xlyzvgk/-0755rm
xtlvifg/-0755rm
xudazo1/-0755rm
xwkrvup/-0755rm
yblhgkn/-0755rm
za1ptho/-0755rm
zayfonq/-0755rm
ztdrfex/-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.php85020644editdlrm
class-wp-sitemaps.php64020644editdlrm
Edit: /home/vianto5/haciendasanpancho.mx/wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php (8502B)
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 = <<