Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: block_core_navigation_render_fallback

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
477       *
478       * Returning a falsey value will opt out of the fallback and cause the block not to render.
479       * To customise the blocks provided return an array of blocks - these should be valid
480       * children of the `core/navigation` block.
481       *
482       * @since 5.9.0
483       *
484       * @param array[] default fallback blocks provided by the default block mechanic.
485       */
486      return apply_filters( 'block_core_navigation_render_fallback', $fallback_blocks );
487 }
488
489 /**
490  * Iterate through all inner blocks recursively and get navigation link block's post IDs.
491  *
492  * @param WP_Block_List $inner_blocks Block list class instance.
493  *
494  * @return array Array of post IDs.
495  */