_register_block_bindings_post_meta_source

The timeline below displays how wordpress function _register_block_bindings_post_meta_source has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 6.5

/**
 * Registers Post Meta source in the block bindings registry.
 *
 * @since 6.5.0
 * @access private
 */
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')));
}