# learnpress/4.4.1/inc/admin/meta-box/fields/html.php

LearnPress – WordPress LMS Plugin for Create and Sell Online Courses, version 4.4.1. 15 lines.

- Page: https://pluginprobe.com/plugins/learnpress/4.4.1/code/inc/admin/meta-box/fields/html.php
- Raw: https://pluginprobe.com/plugins/learnpress/4.4.1/raw/inc/admin/meta-box/fields/html.php
- Modified: 2026-06-26T11:19:40+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/learnpress/4.4.1/code/inc/admin/meta-box/fields/html.php#L10-L20`.

```php
<?php
if ( ! isset( $value ) || ! isset( $tooltip_html ) ) {
	return;
}
?>

<tr valign="top">
	<th scope="row" class="titledesc">
		<label><?php echo wp_kses_post( $value['title'] ); ?> <?php echo wp_kses_post( $tooltip_html ); ?></label>
	</th>
	<td class="forminp forminp-<?php echo esc_attr( $value['type'] ); ?>">
		<?php learn_press_echo_vuejs_write_on_php( $value['default'] ); ?>
	</td>
</tr>

```
