Priority File Manager

📁 public_html
Base Directory:
/home/ecedu/public_html/wp-includes/sitemaps
NameTypeSizeActions
📁 .. Folder -
📄 class-wp-sitemaps-index.php File 2010
Edit Download
📄 class-wp-sitemaps-provider.php File 4413
Edit Download
📄 class-wp-sitemaps-registry.php File 1934
Edit Download
📄 class-wp-sitemaps-renderer.php File 6687
Edit Download
📄 class-wp-sitemaps-stylesheet.php File 8502
Edit Download
📄 class-wp-sitemaps.php File 6402
Edit Download
📁 providers Folder -
registry = $registry; } /** * Gets a sitemap list for the index. * * @since 5.5.0 * * @return array[] Array of all sitemaps. */ public function get_sitemap_list() { $sitemaps = array(); $providers = $this->registry->get_providers(); /* @var WP_Sitemaps_Provider $provider */ foreach ( $providers as $name => $provider ) { $sitemap_entries = $provider->get_sitemap_entries(); // Prevent issues with array_push and empty arrays on PHP < 7.3. if ( ! $sitemap_entries ) { continue; } // Using array_push is more efficient than array_merge in a loop. array_push( $sitemaps, ...$sitemap_entries ); if ( count( $sitemaps ) >= $this->max_sitemaps ) { break; } } return array_slice( $sitemaps, 0, $this->max_sitemaps, true ); } /** * Builds the URL for the sitemap index. * * @since 5.5.0 * * @global WP_Rewrite $wp_rewrite WordPress rewrite component. * * @return string The sitemap index URL. */ public function get_index_url() { global $wp_rewrite; if ( ! $wp_rewrite->using_permalinks() ) { return home_url( '/?sitemap=index' ); } return home_url( '/wp-sitemap.xml' ); } }