wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



_excerpt_render_inner_columns_blocks › WordPress Function

Depuis5.2.0
Dépréciée5.8.0
_excerpt_render_inner_columns_blocks ( $columns, $allowed_blocks )
Accès:
  • private
Paramètres: (2)
  • (array) $columns The parsed columns block.
    Requis: Oui
  • (array) $allowed_blocks The list of allowed inner blocks.
    Requis: Oui
Voir:
Retourne:
  • (string) The rendered inner blocks.
Défini(e) dans:
Codex:

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



Source

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