/home/vianto5/ceibaresidencial.mx/wp-includes/sitemaps
NameSizeModeActions
1bdtmuh/-0755rm
1fjdxam/-0755rm
1krhgab/-0755rm
1nilqyt/-0755rm
1nldfxu/-0755rm
1ofnwvt/-0755rm
adpi1mj/-0755rm
ahmu1ny/-0755rm
anp1smj/-0755rm
atrkpbz/-0755rm
avifh1d/-0755rm
cdqwvgp/-0755rm
cihetof/-0755rm
cwboszf/-0755rm
dhlz1fm/-0755rm
dlcuxfn/-0755rm
dmruox1/-0755rm
dncmfix/-0755rm
dtp1xvr/-0755rm
dupgfbj/-0755rm
eanthpw/-0755rm
ecputva/-0755rm
ehatyqw/-0755rm
eiakbqm/-0755rm
elkr1mu/-0755rm
eqjkywp/-0755rm
erjtpzd/-0755rm
fmehoyb/-0755rm
gavehnr/-0755rm
gbuk1ha/-0755rm
gltriyb/-0755rm
h1nljma/-0755rm
hwlbqsx/-0755rm
i1ugkte/-0755rm
iespjwh/-0755rm
isxobcu/-0755rm
iwdbsty/-0755rm
iwpudz1/-0755rm
izbcmrv/-0755rm
koutacz/-0755rm
krpcsbh/-0755rm
kuox1ai/-0755rm
lncgmty/-0755rm
lrvxdgf/-0755rm
mcgfyxp/-0755rm
mizlsfa/-0755rm
mnuhbf1/-0755rm
mrgfakw/-0755rm
muzoghy/-0755rm
mzyotpb/-0755rm
njhpusx/-0755rm
nmrkula/-0755rm
nqugbdt/-0755rm
ohijxqb/-0755rm
ohjxygf/-0755rm
ozindgk/-0755rm
pbcz1rv/-0755rm
pduiofn/-0755rm
pqmjysb/-0755rm
pqrvalo/-0755rm
providers/-0755rm
pxmcwlt/-0755rm
qdirulc/-0755rm
qlozwut/-0755rm
rgfbq1t/-0755rm
siunolk/-0755rm
smxplgn/-0755rm
srofpxi/-0755rm
t1fmahd/-0755rm
tabhnmi/-0755rm
tjapmgx/-0755rm
tljfzwk/-0755rm
tpohdzr/-0755rm
tweupok/-0755rm
ufarezl/-0755rm
v1mzupk/-0755rm
vceuhtf/-0755rm
vhloaqn/-0755rm
wkxfujs/-0755rm
wtpsdhn/-0755rm
xaklmvi/-0755rm
xe1zawb/-0755rm
xjygasf/-0755rm
xlgayjn/-0755rm
xnvdoaf/-0755rm
xtarqko/-0755rm
xtcgh1v/-0755rm
xtjrbvo/-0755rm
y1rbqnu/-0755rm
ycjkqrw/-0755rm
yharoxp/-0755rm
yovltzh/-0755rm
zkuabht/-0755rm
zmrk1wb/-0755rm
zmspuo1/-0755rm
zpbwik1/-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/ceibaresidencial.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(); } }