PluginProbe
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses / 4.1.7
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses v4.1.7
4.4.7 4.4.6 4.4.5 4.4.4 4.4.3 4.4.2 4.4.1 4.4.0 4.3.9.1 4.3.9 4.3.8 4.3.7 4.1.6.9 4.1.6.9.1 4.1.6.9.2 4.1.6.9.3 4.1.6.9.4 4.1.7 4.1.7.1 4.1.7.2 4.1.7.3 4.1.7.3.1 4.1.7.3.2 4.2.0 4.2.1 All 138 releases
learnpress / inc / admin / meta-box / fields / image.php

image.php in LearnPress – WordPress LMS Plugin for Create and Sell Online Courses 4.1.7, at inc/admin/meta-box/fields/image.php

29 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php $option_value = $value['value']; ?>
2
3 <tr valign="top">
4 <th scope="row" class="titledesc">
5 <label for="<?php echo esc_attr( $value['id'] ); ?>">
6 <?php echo wp_kses_post( $value['title'] ); ?>
7 <?php echo wp_kses_post( $tooltip_html ); ?>
8 </label>
9 </th>
10 <td class="forminp lp-metabox-field__image forminp-<?php echo esc_attr( sanitize_title( $value['type'] ) ); ?>">&lrm;
11 <div class="lp-metabox-field__image--image">
12 <div>
13 <?php if ( ! empty( $option_value ) ) : ?>
14 <div class="lp-metabox-field__image--inner">
15 <?php echo wp_get_attachment_image( $option_value, 'thumbnail' ); ?>
16 </div>
17 <?php endif; ?>
18 </div>
19 </div>
20
21 <input type="hidden" class="lp-metabox-field__image--id" name="<?php echo esc_attr( $value['id'] ); ?>" value="<?php echo esc_attr( $option_value ); ?>" />
22
23 <p class="lp-metabox-field__image--upload hide-if-no-js">
24 <a href="#" class="lp-metabox-field__image--add button" data-choose="<?php esc_attr_e( 'Select images', 'learnpress' ); ?>" data-update="<?php esc_attr_e( 'Select', 'learnpress' ); ?>"><?php esc_html_e( 'Upload', 'learnpress' ); ?></a>
25 <a href="#" class="lp-metabox-field__image--delete button" style="display: none;"><?php esc_html_e( 'Delete', 'learnpress' ); ?></a>
26 </p>
27 </td>
28 </tr>
29