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



do_blocks › WordPress Function

Depuis5.0.0
Dépréciéen/a
do_blocks ( $content )
Paramètres:
  • (string) $content Post content.
    Requis: Oui
Retourne:
  • (string) Updated post content.
Défini(e) dans:
Codex:

Parses dynamic blocks out of `post_content` and re-renders them.



Source

function do_blocks( $content ) {
	$blocks = parse_blocks( $content );
	$output = '';

	foreach ( $blocks as $block ) {
		$output .= render_block( $block );
	}

	// If there are blocks in this content, we shouldn't run wpautop() on it later.
	$priority = has_filter( 'the_content', 'wpautop' );
	if ( false !== $priority && doing_filter( 'the_content' ) && has_blocks( $content ) ) {
		remove_filter( 'the_content', 'wpautop', $priority );
		add_filter( 'the_content', '_restore_wpautop_hook', $priority + 1 );
	}

	return $output;
}