/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-provider.php (4413B)
get_object_subtypes(); /* * If there are no object subtypes, include a single sitemap for the * entire object type. */ if ( empty( $object_subtypes ) ) { $sitemap_data[] = array( 'name' => '', 'pages' => $this->get_max_num_pages(), ); return $sitemap_data; } // Otherwise, include individual sitemaps for every object subtype. foreach ( $object_subtypes as $object_subtype_name => $data ) { $object_subtype_name = (string) $object_subtype_name; $sitemap_data[] = array( 'name' => $object_subtype_name, 'pages' => $this->get_max_num_pages( $object_subtype_name ), ); } return $sitemap_data; } /** * Lists sitemap pages exposed by this provider. * * The returned data is used to populate the sitemap entries of the index. * * @since 5.5.0 * * @return array[] Array of sitemap entries. */ public function get_sitemap_entries() { $sitemaps = array(); $sitemap_types = $this->get_sitemap_type_data(); foreach ( $sitemap_types as $type ) { for ( $page = 1; $page <= $type['pages']; $page++ ) { $sitemap_entry = array( 'loc' => $this->get_sitemap_url( $type['name'], $page ), ); /** * Filters the sitemap entry for the sitemap index. * * @since 5.5.0 * * @param array $sitemap_entry Sitemap entry for the post. * @param string $object_type Object empty name. * @param string $object_subtype Object subtype name. * Empty string if the object type does not support subtypes. * @param int $page Page number of results. */ $sitemap_entry = apply_filters( 'wp_sitemaps_index_entry', $sitemap_entry, $this->object_type, $type['name'], $page ); $sitemaps[] = $sitemap_entry; } } return $sitemaps; } /** * Gets the URL of a sitemap entry. * * @since 5.5.0 * * @global WP_Rewrite $wp_rewrite WordPress rewrite component. * * @param string $name The name of the sitemap. * @param int $page The page of the sitemap. * @return string The composed URL for a sitemap entry. */ public function get_sitemap_url( $name, $page ) { global $wp_rewrite; // Accounts for cases where name is not included, ex: sitemaps-users-1.xml. $params = array_filter( array( 'sitemap' => $this->name, 'sitemap-subtype' => $name, 'paged' => $page, ) ); $basename = sprintf( '/wp-sitemap-%1$s.xml', implode( '-', $params ) ); if ( ! $wp_rewrite->using_permalinks() ) { $basename = '/?' . http_build_query( $params, '', '&' ); } return home_url( $basename ); } /** * Returns the list of supported object subtypes exposed by the provider. * * @since 5.5.0 * * @return array List of object subtypes objects keyed by their name. */ public function get_object_subtypes() { return array(); } }