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