# wordpress-seo/trunk/src/schema-aggregator/infrastructure/elements-context-map/base-map-loader.php

Yoast SEO – Advanced SEO with real-time guidance and built-in AI, version trunk. 21 lines.

- Page: https://pluginprobe.com/plugins/wordpress-seo/trunk/code/src/schema-aggregator/infrastructure/elements-context-map/base-map-loader.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/trunk/raw/src/schema-aggregator/infrastructure/elements-context-map/base-map-loader.php
- Modified: 2026-02-17T12:17:50+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wordpress-seo/trunk/code/src/schema-aggregator/infrastructure/elements-context-map/base-map-loader.php#L10-L20`.

```php
<?php
// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure.
namespace Yoast\WP\SEO\Schema_Aggregator\Infrastructure\Elements_Context_Map;

/**
 * Map loader default implementation.
 *
 * @codeCoverageIgnore -- No logic to test.
 */
class Base_Map_Loader implements Map_Loader_Interface {

	/**
	 * Loads the elements-context map.
	 *
	 * @return array<array<string, string>> The elements context map.
	 */
	public function load(): array {
		return Default_Elements_Context_Map::get();
	}
}

```
