- Timestamp:
- 06/08/2024 10:55:55 AM (7 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/html-api/class-wp-html-processor.php
r58304 r58363 277 277 * 278 278 * @since 6.4.0 279 * @since 6.6.0 Returns `static` instead of `self` so it can create subclass instances. 279 280 * 280 281 * @param string $html Input HTML fragment to process. 281 282 * @param string $context Context element for the fragment, must be default of `<body>`. 282 283 * @param string $encoding Text encoding of the document; must be default of 'UTF-8'. 283 * @return WP_HTML_Processor|null The created processor if successful, otherwise null.284 * @return static|null The created processor if successful, otherwise null. 284 285 */ 285 286 public static function create_fragment( $html, $context = '<body>', $encoding = 'UTF-8' ) { … … 288 289 } 289 290 290 $processor = new s elf( $html, self::CONSTRUCTOR_UNLOCK_CODE );291 $processor = new static( $html, self::CONSTRUCTOR_UNLOCK_CODE ); 291 292 $processor->state->context_node = array( 'BODY', array() ); 292 293 $processor->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_IN_BODY;
Note: See TracChangeset
for help on using the changeset viewer.