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



_excerpt_render_inner_columns_blocks › WordPress Function

Seit5.2.0
Veraltet5.8.0
_excerpt_render_inner_columns_blocks ( $columns, $allowed_blocks )
Zugriff:
  • private
Parameter: (2)
  • (array) $columns The parsed columns block.
    Erforderlich: Ja
  • (array) $allowed_blocks The list of allowed inner blocks.
    Erforderlich: Ja
Siehe:
Gibt zurück:
  • (string) The rendered inner blocks.
Definiert in:
Codex:

Render inner blocks from the `core/columns` block for generating an excerpt.



Quellcode

function _excerpt_render_inner_columns_blocks( $columns, $allowed_blocks ) {
	_deprecated_function( __FUNCTION__, '5.8.0', '_excerpt_render_inner_blocks()' );

	return _excerpt_render_inner_blocks( $columns, $allowed_blocks );
}