gutenberg_navigation_should_create_fallback

gutenberg_navigation_should_create_fallback

Hook Type: filter

See hook in core

Displaying hooks found in version: gutenberg.17.1.2

apply_filters('gutenberg_navigation_should_create_fallback') is found 1 times:

  • /lib/compat/wordpress-6.3/class-gutenberg-navigation-fallback.php line 33
    		 * @since 6.3.0
    		 *
    		 * @param bool Whether or not to create a fallback.
    		 */
    		$should_create_fallback = apply_filters( 'gutenberg_navigation_should_create_fallback', true );
    
    		$fallback = static::get_most_recently_published_navigation();
    
    		if ( $fallback || ! $should_create_fallback ) {
    			return $fallback;
    		}