wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



get_block_metadata_i18n_schema › WordPress Function

Seit5.9.0
Veraltetn/v
get_block_metadata_i18n_schema ( Keine Parameter )
Gibt zurück:
  • (object) The schema for block's metadata.
Definiert in:
Codex:

Gets i18n schema for block's metadata read from `block.json` file.



Quellcode

function get_block_metadata_i18n_schema() {
	static $i18n_block_schema;

	if ( ! isset( $i18n_block_schema ) ) {
		$i18n_block_schema = wp_json_file_decode( __DIR__ . '/block-i18n.json' );
	}

	return $i18n_block_schema;
}