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
341       *
342       * Returning a falsey value will opt out of the fallback and cause the block not to render.
343       * To customise the blocks provided return an array of blocks - these should be valid
344       * children of the `core/navigation` block.
345       *
346       * @since 5.9.0
347       *
348       * @param array[] default fallback blocks provided by the default block mechanic.
349       */
350      return apply_filters( 'block_core_navigation_render_fallback', $fallback_blocks );
351 }
352
353 /**
354  * Iterate through all inner blocks recursively and get navigation link block's post IDs.
355  *
356  * @param WP_Block_List $inner_blocks Block list class instance.
357  *
358  * @return array Array of post IDs.
359  */