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
321
322           /**
323            * Filters the arguments for registering a block type.
324            *
325            * @since 5.5.0
326            *
327            * @param array  $args       Array of arguments for registering a block type.
328            * @param string $block_type Block type name including namespace.
329            */
330           $args = apply_filters( 'register_block_type_args', $args, $this->name );
331
332           foreach ( $args as $property_name => $property_value ) {
333                $this->$property_name = $property_value;
334           }
335      }
336
337      /**
338       * Get all available block attributes including possible layout attribute from Columns block.
339       *