/home/vianto5/duettowers.mx/wp-includes/sitemaps
NameSizeModeActions
1ceqxtp/-0755rm
1uosgzt/-0755rm
1wxyoge/-0755rm
acxleug/-0755rm
ainldsr/-0755rm
brnctay/-0755rm
bryzkwq/-0755rm
buynwmf/-0755rm
ctnxeyw/-0755rm
d1zfghn/-0755rm
dckomhw/-0755rm
dgyjceq/-0755rm
downqav/-0755rm
ehk1sny/-0755rm
euhjvnd/-0755rm
evzuhqs/-0755rm
ewgzcmf/-0755rm
ewhiurc/-0755rm
ezbtdav/-0755rm
ezmqlsr/-0755rm
fhisjkc/-0755rm
fxct1qa/-0755rm
fz1vykg/-0755rm
gkrjusp/-0755rm
hgdvfyk/-0755rm
hqdeb1a/-0755rm
htgsjcw/-0755rm
hufl1ws/-0755rm
huktlzo/-0755rm
hurnl1i/-0755rm
hwxkm1i/-0755rm
ia1vkte/-0755rm
icjkpwg/-0755rm
ictexrj/-0755rm
inhtrsz/-0755rm
irgtyol/-0755rm
iyklaxg/-0755rm
jbpefkq/-0755rm
jyhwgc1/-0755rm
kevs1jf/-0755rm
kfahosc/-0755rm
kvyhzen/-0755rm
kyqdpts/-0755rm
kyzsev1/-0755rm
lcazrby/-0755rm
lepkuny/-0755rm
lyijmgr/-0755rm
mplwghd/-0755rm
n1ijzsd/-0755rm
nabhelq/-0755rm
nfbwx1r/-0755rm
nqjdhzs/-0755rm
oepjvfh/-0755rm
oipwbal/-0755rm
oiusbdt/-0755rm
oxausqp/-0755rm
pfgmvzl/-0755rm
powksir/-0755rm
pqmezlo/-0755rm
providers/-0755rm
puxsckl/-0755rm
pwdfbse/-0755rm
pyignkj/-0755rm
pyvjfol/-0755rm
qibsdc1/-0755rm
qlcofvx/-0755rm
qljiwyr/-0755rm
qthspwd/-0755rm
qvtoauy/-0755rm
rxulmje/-0755rm
sehxmpv/-0755rm
sinjbuc/-0755rm
syjfnrw/-0755rm
tbrxuji/-0755rm
tkuoiah/-0755rm
trspcqe/-0755rm
twlapzb/-0755rm
ufrysdq/-0755rm
uonlbqf/-0755rm
upksndo/-0755rm
vzqktf1/-0755rm
w1mcdzg/-0755rm
weurmhv/-0755rm
wlmjyrz/-0755rm
wp1octm/-0755rm
xgyonvl/-0755rm
xhiylga/-0755rm
xhqstnb/-0755rm
xkznavg/-0755rm
yqlfbxn/-0755rm
yskwrzc/-0755rm
yuhiaqe/-0755rm
yvlzhpu/-0755rm
yxczhtm/-0755rm
zfdcjbr/-0755rm
zhcrigy/-0755rm
zkvfsab/-0755rm
zlxojku/-0755rm
zokxpja/-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/duettowers.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(); } }