Skip to content

Commit da50ef9

Browse files
committed
Docs: Fix $feature parameter type in block_has_support().
In `block_has_support()` docblock, the `$feature` parameter is an array, not a string. Props Soean, audrasjb. Fixes #56307. See #55646. git-svn-id: https://develop.svn.wordpress.org/trunk@53799 602fd350-edb4-49c9-b593-d223f7449a82
1 parent ac18fe8 commit da50ef9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/wp-includes/blocks.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1017,7 +1017,7 @@ function unregister_block_style( $block_name, $block_style_name ) {
10171017
* @since 5.8.0
10181018
*
10191019
* @param WP_Block_Type $block_type Block type to check for support.
1020-
* @param string $feature Name of the feature to check support for.
1020+
* @param array $feature Path to a specific feature to check support for.
10211021
* @param mixed $default Optional. Fallback value for feature support. Default false.
10221022
* @return bool Whether the feature is supported.
10231023
*/

0 commit comments

Comments
 (0)