render_block_core_shortcode()
Performs wpautop() on the shortcode block content.
Хуков нет.
Возвращает
Строку. Returns the block content.
Использование
render_block_core_shortcode( $attributes, $content );
- $attributes(массив) (обязательный)
- The block attributes.
- $content(строка) (обязательный)
- The block content.
Список изменений
| С версии 5.0.0 | Введена. |
Код render_block_core_shortcode() render block core shortcode WP 6.9.4
function render_block_core_shortcode( $attributes, $content ) {
return wpautop( $content );
}