/home/vianto5/realtylifestyleproperties.mx/wp-includes/sitemaps
NameSizeModeActions
1hlmwzo/-0755rm
1qpalod/-0755rm
1xdtkzl/-0755rm
1yilzmt/-0755rm
1yiotnv/-0755rm
aidgkjv/-0755rm
aoztbgq/-0755rm
aqwsdbh/-0755rm
arnlqm1/-0755rm
bcmaskg/-0755rm
btxqied/-0755rm
crtpkij/-0755rm
cwyzjhp/-0755rm
davc1fi/-0755rm
digncbk/-0755rm
diwcknz/-0755rm
dltpwrh/-0755rm
dyajkcx/-0755rm
e1ctrza/-0755rm
egbjuca/-0755rm
egxbktc/-0755rm
eiagfbt/-0755rm
emrhniq/-0755rm
evscbgi/-0755rm
fhidsju/-0755rm
fpjarms/-0755rm
frstxpl/-0755rm
fru1lns/-0755rm
gdkelqr/-0755rm
gemhvyz/-0755rm
gklefoa/-0755rm
gvbelpf/-0755rm
hgrwdqk/-0755rm
hijklvr/-0755rm
hnicrza/-0755rm
hoqlkfx/-0755rm
hqkfi1c/-0755rm
iarbwft/-0755rm
ilqovbc/-0755rm
izxgndo/-0755rm
jazybvi/-0755rm
jehfvnu/-0755rm
jicw1xq/-0755rm
kdinfpm/-0755rm
kqbx1lh/-0755rm
krlhgab/-0755rm
lbhiyjs/-0755rm
loafuvm/-0755rm
lvhgaei/-0755rm
mgvfjly/-0755rm
misjau1/-0755rm
ncugapi/-0755rm
nxworlf/-0755rm
nyskwzl/-0755rm
oculpdz/-0755rm
opjswlf/-0755rm
opzcdig/-0755rm
p1ytvrq/-0755rm
pmqkhiw/-0755rm
pqkzlxj/-0755rm
providers/-0755rm
qjcegxn/-0755rm
qxfej1a/-0755rm
qytldxs/-0755rm
r1gxveu/-0755rm
rz1xfag/-0755rm
sokprfv/-0755rm
stofkbl/-0755rm
swclfnk/-0755rm
taxvnjp/-0755rm
tlcepyi/-0755rm
ts1gnwo/-0755rm
tvefyjn/-0755rm
u1nqikd/-0755rm
vocqwsy/-0755rm
vzcnhux/-0755rm
wdnxbiz/-0755rm
whfekvl/-0755rm
wxdajsk/-0755rm
xbjtkuy/-0755rm
xlw1ivz/-0755rm
yentzku/-0755rm
ygjuqot/-0755rm
yistnqz/-0755rm
yptmnjk/-0755rm
yvcnzfa/-0755rm
yzmware/-0755rm
zmbcyou/-0755rm
zntqmrc/-0755rm
zwkrdge/-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/realtylifestyleproperties.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(); } }