WP_Block_Parser::add_freeform()
Pushes a length of text from the input document to the output list as a freeform block.
Method of the class: WP_Block_Parser{}
No Hooks.
Return
null
. Nothing (null).
Usage
$WP_Block_Parser = new WP_Block_Parser(); $WP_Block_Parser->add_freeform( $length );
- $length(null)
- how many bytes of document text to output.
Default: null
Changelog
Since 5.0.0 | Introduced. |
WP_Block_Parser::add_freeform() WP Block Parser::add freeform code WP 6.7.1
public function add_freeform( $length = null ) { $length = $length ? $length : strlen( $this->document ) - $this->offset; if ( 0 === $length ) { return; } $this->output[] = (array) $this->freeform( substr( $this->document, $this->offset, $length ) ); }