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



render_block_core_shortcode › WordPress Function

Odn/a
Przestarzałyn/a
render_block_core_shortcode ( $attributes, $content )
Parametry: (2)
  • (array) $attributes The block attributes.
    Wymagane: Tak
  • (string) $content The block content.
    Wymagane: Tak
Powrót:
  • (string) Returns the block content.
Zdefiniowane na:
Codex:

Performs wpautop() on the shortcode block content.



Źródło

function render_block_core_shortcode( $attributes, $content ) {
	return wpautop( $content );
}