Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: register_block_type_args

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
335
336           /**
337            * Filters the arguments for registering a block type.
338            *
339            * @since 5.5.0
340            *
341            * @param array  $args       Array of arguments for registering a block type.
342            * @param string $block_type Block type name including namespace.
343            */
344           $args = apply_filters( 'register_block_type_args', $args, $this->name );
345
346           foreach ( $args as $property_name => $property_value ) {
347                $this->$property_name = $property_value;
348           }
349      }
350
351      /**
352       * Get all available block attributes including possible layout attribute from Columns block.
353       *