WP_Sitemaps_Provider::get_sitemap_type_data(): array[]

Gets data about each sitemap type.


Return

array[] Array of sitemap types including object subtype name and number of pages.


Top ↑

Source

File: wp-includes/sitemaps/class-wp-sitemaps-provider.php. View all references

public function get_sitemap_type_data() {
	$sitemap_data = array();

	$object_subtypes = $this->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;
}


Top ↑

Changelog

Changelog
Version Description
5.5.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.