WP_Block_Type::set_props( array|string $args )
Sets block type properties.
Parameters
- $args
-
(array|string) (Required) Array or string of arguments for registering a block type. See WP_Block_Type::__construct() for information on accepted arguments.
Source
File: wp-includes/class-wp-block-type.php
public function set_props( $args ) {
$args = wp_parse_args(
$args,
array(
'render_callback' => null,
)
);
$args['name'] = $this->name;
/**
* Filters the arguments for registering a block type.
*
* @since 5.5.0
*
* @param array $args Array of arguments for registering a block type.
* @param string $block_type Block type name including namespace.
*/
$args = apply_filters( 'register_block_type_args', $args, $this->name );
foreach ( $args as $property_name => $property_value ) {
$this->$property_name = $property_value;
}
} Changelog
| Version | Description |
|---|---|
| 5.0.0 | Introduced. |
© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_block_type/set_props