Docs: Correct DocBlock formatting in `wp-includes/blocks.php`.
Follow-up to [58471]. Props david.binda, narenin, sabernhardt, shital-patel, SergeyBiryukov. Fixes #61493. Built from https://develop.svn.wordpress.org/trunk@58561 git-svn-id: http://core.svn.wordpress.org/trunk@58009 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c8ea512ba4
commit
e0a3dd8ee6
|
@ -1774,17 +1774,16 @@ function filter_block_kses_value( $value, $allowed_html, $allowed_protocols = ar
|
||||||
return $value;
|
return $value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sanitizes the value of the Template Part block's `tagName` attribute.
|
* Sanitizes the value of the Template Part block's `tagName` attribute.
|
||||||
*
|
*
|
||||||
* @since 6.5.5
|
* @since 6.5.5
|
||||||
*
|
*
|
||||||
* @param string $attribute_value The attribute value to filter.
|
* @param string $attribute_value The attribute value to filter.
|
||||||
* @param string $attribute_name The attribute name.
|
* @param string $attribute_name The attribute name.
|
||||||
* @param array[]|string $allowed_html An array of allowed HTML elements and attributes,
|
* @param array[]|string $allowed_html An array of allowed HTML elements and attributes,
|
||||||
* or a context name such as 'post'. See wp_kses_allowed_html()
|
* or a context name such as 'post'. See wp_kses_allowed_html()
|
||||||
* for the list of accepted context names.
|
* for the list of accepted context names.
|
||||||
* @return string The sanitized attribute value.
|
* @return string The sanitized attribute value.
|
||||||
*/
|
*/
|
||||||
function filter_block_core_template_part_attributes( $attribute_value, $attribute_name, $allowed_html ) {
|
function filter_block_core_template_part_attributes( $attribute_value, $attribute_name, $allowed_html ) {
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.6-beta4-58560';
|
$wp_version = '6.6-beta4-58561';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue