Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: excerpt_allowed_blocks

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
147       * Filters the list of blocks that can contribute to the excerpt.
148       *
149       * If a dynamic block is added to this list, it must not generate another
150       * excerpt, as this will cause an infinite loop to occur.
151       *
152       * @since 4.4.0
153       *
154       * @param array $allowed_blocks The list of allowed blocks.
155       */
156      $allowed_blocks = apply_filters( 'excerpt_allowed_blocks', $allowed_blocks );
157      $blocks         = parse_blocks( $content );
158      $output         = '';
159
160      foreach ( $blocks as $block ) {
161           if ( in_array( $block['blockName'], $allowed_blocks, true ) ) {
162                if ( ! empty( $block['innerBlocks'] ) ) {
163                     if ( 'core/columns' === $block['blockName'] ) {
164                          $output .= _excerpt_render_inner_columns_blocks( $block, $allowed_inner_blocks );
165                          continue;