Changeset 60939 for trunk/src/wp-includes/blocks.php
- Timestamp:
- 10/15/2025 09:51:35 PM (4 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/blocks.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/blocks.php
r60809 r60939 2377 2377 * Parses blocks out of a content string. 2378 2378 * 2379 * Given an HTML document, this function fully-parses block content, producing 2380 * a tree of blocks and their contents, as well as top-level non-block content, 2381 * which will appear as a block with no `blockName`. 2382 * 2383 * This function can be memory heavy for certain documents, particularly those 2384 * with deeply-nested blocks or blocks with extensive attribute values. Further, 2385 * this function must parse an entire document in one atomic operation. 2386 * 2387 * If the entire parsed document is not necessary, consider using {@see WP_Block_Processor} 2388 * instead, as it provides a streaming and low-overhead interface for finding blocks. 2389 * 2379 2390 * @since 5.0.0 2380 2391 *
Note: See TracChangeset
for help on using the changeset viewer.