wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



_register_block_bindings_post_meta_source › WordPress Function

Od6.5.0
Przestarzałyn/a
_register_block_bindings_post_meta_source ( Brak parametrów )
Dostęp:
  • private
Zdefiniowane na:
Codex:

Registers Post Meta source in the block bindings registry.



Źródło

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' ),
		)
	);
}