wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



_excerpt_render_inner_columns_blocks › WordPress Function

Da5.2.0
Deprecato5.8.0
_excerpt_render_inner_columns_blocks ( $columns, $allowed_blocks )
Accedi:
  • private
Parametri: (2)
  • (array) $columns The parsed columns block.
    Richiesto:
  • (array) $allowed_blocks The list of allowed inner blocks.
    Richiesto:
Vedi:
Ritorna:
  • (string) The rendered inner blocks.
Definito a:
Codex:

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



Sorgenti

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 );
}