wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



render_block_core_navigation › WordPress Function

Desden/a
Obsoleton/a
render_block_core_navigation ( $attributes, $content, $block )
Parâmetros: (3)
  • (array) $attributes The block attributes.
    Required: Yes
  • (string) $content The saved content.
    Required: Yes
  • (WP_Block) $block The parsed block.
    Required: Yes
Retorna:
  • (string) Returns the navigation block markup.
Definido em:
Codex:

Renders the `core/navigation` block on server.



Fonte

function render_block_core_navigation( $attributes, $content, $block ) {
	return WP_Navigation_Block_Renderer::render( $attributes, $content, $block );
}