wpseek.com
A WordPress-centric search engine for devs and theme authors



block_core_navigation_block_contains_core_navigation › WordPress Function

Since6.2.0
Deprecated7.0.0
block_core_navigation_block_contains_core_navigation ( $inner_blocks )
Parameters:
  • (WP_Block_List) $inner_blocks Inner block instance to be normalized.
    Required: Yes
Returns:
  • (bool) true if the navigation block contains a nested navigation block.
Defined at:
Codex:

Returns true if the navigation block contains a nested navigation block.



Source

function block_core_navigation_block_contains_core_navigation( $inner_blocks ) {
	_deprecated_function( __FUNCTION__, '7.0.0', 'block_core_navigation_block_tree_has_block_type()' );

	return block_core_navigation_block_tree_has_block_type(
		$inner_blocks,
		'core/navigation'
	);
}