Summery Summery
Constructor
Syntax Syntax
Description Description
Will populate object properties from the provided arguments.
Parameters Parameters
- $block
-
(Required) Full or partial block.
- $token_start
-
(Required) Byte offset into document for start of parse token.
- $token_length
-
(Required) Byte length of entire parse token string.
- $prev_offset
-
(Optional) Byte offset into document for after parse token ends.
Default value: null
- $leading_html_start
-
(Optional) Byte offset into document where leading HTML before token starts.
Default value: null
Source Source
File: wp-includes/class-wp-block-parser.php
function __construct( $block, $token_start, $token_length, $prev_offset = null, $leading_html_start = null ) {
$this->block = $block;
$this->token_start = $token_start;
$this->token_length = $token_length;
$this->prev_offset = isset( $prev_offset ) ? $prev_offset : $token_start + $token_length;
$this->leading_html_start = $leading_html_start;
}
Advertisement
Changelog Changelog
| Version | Description |
|---|---|
| 3.8.0 | Introduced. |