wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



get_block_metadata_i18n_schema › WordPress Function

Da5.9.0
Deprecaton/a
get_block_metadata_i18n_schema ( Nessun parametro )
Ritorna:
  • (object) The schema for block's metadata.
Definito a:
Codex:

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



Sorgenti

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;
}