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
585       * Filters the list of blocks that can contribute to the excerpt.
586       *
587       * If a dynamic block is added to this list, it must not generate another
588       * excerpt, as this will cause an infinite loop to occur.
589       *
590       * @since 5.0.0
591       *
592       * @param array $allowed_blocks The list of allowed blocks.
593       */
594      $allowed_blocks = apply_filters( 'excerpt_allowed_blocks', $allowed_blocks );
595      $blocks         = parse_blocks( $content );
596      $output         = '';
597
598      foreach ( $blocks as $block ) {
599           if ( in_array( $block['blockName'], $allowed_blocks, true ) ) {
600                if ( ! empty( $block['innerBlocks'] ) ) {
601                     if ( 'core/columns' === $block['blockName'] ) {
602                          $output .= _excerpt_render_inner_columns_blocks( $block, $allowed_inner_blocks );
603                          continue;