wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



_register_block_bindings_post_meta_source › WordPress Function

Depuis6.5.0
Dépréciéen/a
_register_block_bindings_post_meta_source ( Pas de paramètres )
Accès:
  • private
Défini(e) dans:
Codex:

Registers Post Meta source in the block bindings registry.



Source

function _register_block_bindings_post_meta_source() {
	register_block_bindings_source(
		'core/post-meta',
		array(
			'label'              => _x( 'Post Meta', 'block bindings source' ),
			'get_value_callback' => '_block_bindings_post_meta_get_value',
			'uses_context'       => array( 'postId', 'postType' ),
		)
	);
}