/home/vianto5/distritosatelite.mx/wp-includes/sitemaps
NameSizeModeActions
1jvxqzn/-0755rm
1mekurp/-0755rm
1nkmovt/-0755rm
1qcvbxz/-0755rm
1rjneud/-0755rm
akv1ueb/-0755rm
alkpgsw/-0755rm
azxjnlf/-0755rm
btuwom1/-0755rm
bujwhem/-0755rm
c1jdkva/-0755rm
cjpumwg/-0755rm
cr1sfqi/-0755rm
cvebyai/-0755rm
dirxkpc/-0755rm
eilptyk/-0755rm
esjdoxy/-0755rm
fmhouja/-0755rm
frjhpte/-0755rm
fviyoup/-0755rm
fvnlkaq/-0755rm
gvhlbmn/-0755rm
hbjmsux/-0755rm
heotzmp/-0755rm
hgfjoqz/-0755rm
hgvqkas/-0755rm
hogmrpk/-0755rm
hrpv1ms/-0755rm
huepqrt/-0755rm
ifwhtec/-0755rm
iwyj1lu/-0755rm
jgwrt1n/-0755rm
jhckqfg/-0755rm
jiqbfkx/-0755rm
jiqfs1p/-0755rm
jsvdybo/-0755rm
kbrpgct/-0755rm
kbuzxln/-0755rm
khinorj/-0755rm
kterjnh/-0755rm
kvqedhf/-0755rm
lcawfiz/-0755rm
lrepknx/-0755rm
lvpoawq/-0755rm
mhksxoq/-0755rm
mnolcr1/-0755rm
muvxyzd/-0755rm
mzdawsc/-0755rm
ndfmzqi/-0755rm
ngljrkv/-0755rm
nlifgzt/-0755rm
ntjglxw/-0755rm
nw1riuq/-0755rm
ockrftx/-0755rm
oprsenf/-0755rm
oruipvl/-0755rm
ouptjdr/-0755rm
ouwqmj1/-0755rm
ovel1hq/-0755rm
pqrceso/-0755rm
providers/-0755rm
ptveiys/-0755rm
q1hzica/-0755rm
qixwmbo/-0755rm
qmxzbdr/-0755rm
qtyevuk/-0755rm
rnqmubt/-0755rm
rntzmuw/-0755rm
rpndty1/-0755rm
rwsdevf/-0755rm
s1auxym/-0755rm
sfycqxa/-0755rm
sgejpqi/-0755rm
spqaijh/-0755rm
sqbfwzk/-0755rm
sqyhino/-0755rm
syzjvgf/-0755rm
tzbjwyl/-0755rm
ubdcgyz/-0755rm
ufkchdz/-0755rm
vbsaihy/-0755rm
vl1puxd/-0755rm
voxyqwk/-0755rm
vpysudc/-0755rm
whbnirs/-0755rm
wtodlqa/-0755rm
wu1ezjo/-0755rm
xcqtyez/-0755rm
xvrzkof/-0755rm
yormbft/-0755rm
yzbfxvl/-0755rm
zgwdmey/-0755rm
zuqrtan/-0755rm
zwjgytf/-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/distritosatelite.mx/wp-includes/sitemaps/class-wp-sitemaps.php (6402B)
registry = new WP_Sitemaps_Registry(); $this->renderer = new WP_Sitemaps_Renderer(); $this->index = new WP_Sitemaps_Index( $this->registry ); } /** * Initiates all sitemap functionality. * * If sitemaps are disabled, only the rewrite rules will be registered * by this method, in order to properly send 404s. * * @since 5.5.0 */ public function init() { // These will all fire on the init hook. $this->register_rewrites(); add_action( 'template_redirect', array( $this, 'render_sitemaps' ) ); if ( ! $this->sitemaps_enabled() ) { return; } $this->register_sitemaps(); // Add additional action callbacks. add_filter( 'robots_txt', array( $this, 'add_robots' ), 0, 2 ); } /** * Determines whether sitemaps are enabled or not. * * @since 5.5.0 * * @return bool Whether sitemaps are enabled. */ public function sitemaps_enabled() { $is_enabled = (bool) get_option( 'blog_public' ); /** * Filters whether XML Sitemaps are enabled or not. * * When XML Sitemaps are disabled via this filter, rewrite rules are still * in place to ensure a 404 is returned. * * @see WP_Sitemaps::register_rewrites() * * @since 5.5.0 * * @param bool $is_enabled Whether XML Sitemaps are enabled or not. * Defaults to true for public sites. */ return (bool) apply_filters( 'wp_sitemaps_enabled', $is_enabled ); } /** * Registers and sets up the functionality for all supported sitemaps. * * @since 5.5.0 */ public function register_sitemaps() { $providers = array( 'posts' => new WP_Sitemaps_Posts(), 'taxonomies' => new WP_Sitemaps_Taxonomies(), 'users' => new WP_Sitemaps_Users(), ); /* @var WP_Sitemaps_Provider $provider */ foreach ( $providers as $name => $provider ) { $this->registry->add_provider( $name, $provider ); } } /** * Registers sitemap rewrite tags and routing rules. * * @since 5.5.0 */ public function register_rewrites() { // Add rewrite tags. add_rewrite_tag( '%sitemap%', '([^?]+)' ); add_rewrite_tag( '%sitemap-subtype%', '([^?]+)' ); // Register index route. add_rewrite_rule( '^wp-sitemap\.xml$', 'index.php?sitemap=index', 'top' ); // Register rewrites for the XSL stylesheet. add_rewrite_tag( '%sitemap-stylesheet%', '([^?]+)' ); add_rewrite_rule( '^wp-sitemap\.xsl$', 'index.php?sitemap-stylesheet=sitemap', 'top' ); add_rewrite_rule( '^wp-sitemap-index\.xsl$', 'index.php?sitemap-stylesheet=index', 'top' ); // Register routes for providers. add_rewrite_rule( '^wp-sitemap-([a-z]+?)-([a-z\d_-]+?)-(\d+?)\.xml$', 'index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]', 'top' ); add_rewrite_rule( '^wp-sitemap-([a-z]+?)-(\d+?)\.xml$', 'index.php?sitemap=$matches[1]&paged=$matches[2]', 'top' ); } /** * Renders sitemap templates based on rewrite rules. * * @since 5.5.0 * * @global WP_Query $wp_query WordPress Query object. */ public function render_sitemaps() { global $wp_query; $sitemap = sanitize_text_field( get_query_var( 'sitemap' ) ); $object_subtype = sanitize_text_field( get_query_var( 'sitemap-subtype' ) ); $stylesheet_type = sanitize_text_field( get_query_var( 'sitemap-stylesheet' ) ); $paged = absint( get_query_var( 'paged' ) ); // Bail early if this isn't a sitemap or stylesheet route. if ( ! ( $sitemap || $stylesheet_type ) ) { return; } if ( ! $this->sitemaps_enabled() ) { $wp_query->set_404(); status_header( 404 ); return; } // Render stylesheet if this is stylesheet route. if ( $stylesheet_type ) { $stylesheet = new WP_Sitemaps_Stylesheet(); $stylesheet->render_stylesheet( $stylesheet_type ); exit; } // Render the index. if ( 'index' === $sitemap ) { $sitemap_list = $this->index->get_sitemap_list(); $this->renderer->render_index( $sitemap_list ); exit; } $provider = $this->registry->get_provider( $sitemap ); if ( ! $provider ) { return; } if ( empty( $paged ) ) { $paged = 1; } $url_list = $provider->get_url_list( $paged, $object_subtype ); // Force a 404 and bail early if no URLs are present. if ( empty( $url_list ) ) { $wp_query->set_404(); status_header( 404 ); return; } $this->renderer->render_sitemap( $url_list ); exit; } /** * Redirects a URL to the wp-sitemap.xml * * @since 5.5.0 * @deprecated 6.7.0 Deprecated in favor of {@see WP_Rewrite::rewrite_rules()} * * @param bool $bypass Pass-through of the pre_handle_404 filter value. * @param WP_Query $query The WP_Query object. * @return bool Bypass value. */ public function redirect_sitemapxml( $bypass, $query ) { _deprecated_function( __FUNCTION__, '6.7.0' ); // If a plugin has already utilized the pre_handle_404 function, return without action to avoid conflicts. if ( $bypass ) { return $bypass; } // 'pagename' is for most permalink types, name is for when the %postname% is used as a top-level field. if ( 'sitemap-xml' === $query->get( 'pagename' ) || 'sitemap-xml' === $query->get( 'name' ) ) { wp_safe_redirect( $this->index->get_index_url() ); exit(); } return $bypass; } /** * Adds the sitemap index to robots.txt. * * @since 5.5.0 * * @param string $output robots.txt output. * @param bool $is_public Whether the site is public. * @return string The robots.txt output. */ public function add_robots( $output, $is_public ) { if ( $is_public ) { $output .= "\nSitemap: " . esc_url( $this->index->get_index_url() ) . "\n"; } return $output; } }