wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



render_block_core_navigation › WordPress Function

Seitn/v
Veraltetn/v
render_block_core_navigation ( $attributes, $content, $block )
Parameter: (3)
  • (array) $attributes The block attributes.
    Erforderlich: Ja
  • (string) $content The saved content.
    Erforderlich: Ja
  • (WP_Block) $block The parsed block.
    Erforderlich: Ja
Gibt zurück:
  • (string) Returns the navigation block markup.
Definiert in:
Codex:

Renders the `core/navigation` block on server.



Quellcode

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