Validate::code_content( array $matches )
Description #
Callback for replacing contents inside <code>
tag.
Parameters #
- $matchesarray (Required) Matches.
Source #
File: lib/class-validate.php
private static function code_content( $matches ) { return '<code>' . esc_html( $matches[1] ) . '</code>'; }
Expand full source code Collapse full source code View on GitHub: lib/class-validate.php:253
Add your comment