wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



_excerpt_render_inner_columns_blocks › WordPress Function

Od5.2.0
Przestarzały5.8.0
_excerpt_render_inner_columns_blocks ( $columns, $allowed_blocks )
Dostęp:
  • private
Parametry: (2)
  • (array) $columns The parsed columns block.
    Wymagane: Tak
  • (array) $allowed_blocks The list of allowed inner blocks.
    Wymagane: Tak
Zobacz:
Powrót:
  • (string) The rendered inner blocks.
Zdefiniowane na:
Codex:

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



Źródło

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