Editor::pre_get()
Description #
Replace temporary images with img tags.
Source #
File: lib/form/class-editor.php
public function pre_get() {
$value = $this->value();
if ( $this->have_errors() || ! $value ) {
return;
}
$this->value = preg_replace_callback( '/<img\s+src="([^"]+)"[^>]+>/i', array( $this, 'image_process' ), $value );
}
Expand full source code Collapse full source code View on GitHub: lib/form/class-editor.php:255
Add your comment