class@anonymous::insert_after( string $text )

In this article

Inserts text after the current token.

Parameters

$textstringrequired
Text to insert.

Source

public function insert_after( string $text ) {
	$span = $this->get_span();

	$this->lexical_updates[] = new WP_HTML_Text_Replacement( $span->start + $span->length, 0, $text );
}

User Contributed Notes

You must log in before being able to contribute a note or feedback.