HEX
Server: LiteSpeed
System: Linux l24.yourwebhosting.net 5.14.0-611.54.3.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:31:24 EDT 2026 x86_64
User: turkishi (1582)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //proc/thread-self/cwd/wp-content/plugins/learnpress/inc/admin/meta-box/fields/image-dimensions.php
<?php
$size   = $value['value'];
$width  = isset( $size['width'] ) ? $size['width'] : $value['default'][0];
$height = isset( $size['height'] ) ? $size['height'] : $value['default'][1];
$crop   = isset( $size['crop'] ) ? $size['crop'] : $value['default'][2];
?>
<tr valign="top">
	<th scope="row" class="titledesc">
	<label>
		<?php echo esc_html( $value['title'] ); ?>
		<?php echo wp_kses_post( $tooltip_html ); ?>
	</label>
</th>
	<td class="forminp image_width_settings">
		<input name="<?php echo esc_attr( $value['id'] ); ?>[width]"
			id="<?php echo esc_attr( $value['id'] ); ?>-width" type="text"
			size="5" value="<?php echo esc_attr( $width ); ?>" />&times;
		<input name="<?php echo esc_attr( $value['id'] ); ?>[height]"
			id="<?php echo esc_attr( $value['id'] ); ?>-height"
			type="text" size="5"
			value="<?php echo esc_attr( $height ); ?>" />px
		</td>
</tr>