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



render_block_core_shortcode › WordPress Function

Dan/a
Deprecaton/a
render_block_core_shortcode ( $attributes, $content )
Parametri: (2)
  • (array) $attributes The block attributes.
    Richiesto:
  • (string) $content The block content.
    Richiesto:
Ritorna:
  • (string) Returns the block content.
Definito a:
Codex:

Performs wpautop() on the shortcode block content.



Sorgenti

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