/home/techb158/primomovers.ca/wp-includes/sitemaps
NameSizeModeActions
ajcmdrx/-0755rm
aogdhwe/-0755rm
aoqjhnk/-0755rm
bafmuph/-0755rm
bdcpawx/-0755rm
bgkwjtv/-0755rm
bkpncqs/-0755rm
cezxgvf/-0755rm
cslujfk/-0755rm
cvgmitf/-0755rm
dfrikmq/-0755rm
dlrsmfq/-0755rm
dqchsym/-0755rm
dzacnhi/-0755rm
ebazqip/-0755rm
ef1tdjx/-0755rm
ekvfn1j/-0755rm
foksjrv/-0755rm
fthnkvx/-0755rm
gdq1erf/-0755rm
gfjvu1i/-0755rm
iuad1mj/-0755rm
jbcurhd/-0755rm
jbe1rxf/-0755rm
jpyulho/-0755rm
jqtrxah/-0755rm
khoxdqb/-0755rm
kroqixg/-0755rm
kzfcsmj/-0755rm
lhsgvft/-0755rm
lkcdgte/-0755rm
lovcipw/-0755rm
mgtlyfk/-0755rm
mqgoxua/-0755rm
ncfdaor/-0755rm
ngltyhw/-0755rm
nwgziad/-0755rm
oanxidk/-0755rm
oczvpew/-0755rm
oidk1hj/-0755rm
oil1fac/-0755rm
omeanct/-0755rm
oqrwgvc/-0755rm
oxjgi1e/-0755rm
oxwtafj/-0755rm
p1jyghr/-0755rm
plxtg1s/-0755rm
providers/-0755rm
qchwuxn/-0755rm
qenkrdm/-0755rm
qrcyngx/-0755rm
rcxzmap/-0755rm
rhlecad/-0755rm
rieltuy/-0755rm
rjabqxe/-0755rm
rogvsqz/-0755rm
sbezjpq/-0755rm
selvraj/-0755rm
shfzjvi/-0755rm
sjphcen/-0755rm
tfwyzim/-0755rm
thblurn/-0755rm
tveum1x/-0755rm
ua1fgbh/-0755rm
ufjwbtv/-0755rm
uitmhlz/-0755rm
ukzijgb/-0755rm
ulnwpi1/-0755rm
uwtlvpx/-0755rm
vdfaupn/-0755rm
vdqg1iz/-0755rm
vghyait/-0755rm
vogeijz/-0755rm
vsnqmot/-0755rm
vysxnuh/-0755rm
vyumqtj/-0755rm
vyuslwo/-0755rm
wc1qopa/-0755rm
wdvogqt/-0755rm
whsjvru/-0755rm
wvqlbzn/-0755rm
wxh1gvm/-0755rm
wxieqov/-0755rm
xjul1pa/-0755rm
xmhnikv/-0755rm
xpgvuya/-0755rm
xtnj1ho/-0755rm
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/techb158/primomovers.ca/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(); } }