Customize uploader title and btn text
This commit is contained in:
@ -403,10 +403,14 @@ class CWV2_Admin {
|
|||||||
'type' => 'editor',
|
'type' => 'editor',
|
||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
'id' => 'bg_image',
|
'id' => 'bg_image',
|
||||||
'name' => __( 'Background Image', 'content-warning-v2' ),
|
'name' => __( 'Background Image', 'content-warning-v2' ),
|
||||||
'desc' => __( 'If not empty, the dialog will use this instead of the background opacity and color.', 'content-warning-v2' ),
|
'desc' => __( 'If not empty, the dialog will use this instead of the background opacity and color.', 'content-warning-v2' ),
|
||||||
'type' => 'media',
|
'type' => 'media',
|
||||||
|
'options' => array(
|
||||||
|
'uploader-title' => __( 'Content Warning Background Image', 'content-warning-v2' ),
|
||||||
|
'uploader-btn' => __( 'Select Background Image', 'content-warning-v2' ),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
'id' => 'bg_opacity',
|
'id' => 'bg_opacity',
|
||||||
|
@ -153,10 +153,12 @@ class CWV2_Settings {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$label = isset( $options['label'] ) ? $options['label'] : __( 'Upload', 'content-warning-v2' );
|
$label = isset( $options['label'] ) ? $options['label'] : __( 'Upload', 'content-warning-v2' );
|
||||||
|
$uploader_title = isset( $options['uploader-title'] ) ? sprintf( 'data-uploader-title="%s"', $options['uploader-title'] ) : '';
|
||||||
|
$uploader_button = isset( $options['uploader-btn'] ) ? sprintf( 'data-uploader-btn-txt="%s"', $options['uploader-btn'] ) : '';
|
||||||
|
|
||||||
?><fieldset>
|
?><fieldset>
|
||||||
<input type="text" name="<?php echo $field_id; ?>" id="<?php echo $field_id; ?>" value="<?php echo $option_value; ?>" class="regular-text" />
|
<input type="text" name="<?php echo $field_id; ?>" id="<?php echo $field_id; ?>" value="<?php echo $option_value; ?>" class="regular-text" />
|
||||||
<input type="button" class="button button-secondary upload_image_button" value="<?php echo $label; ?>" data-target-id="<?php echo $field_id; ?>" />
|
<input type="button" class="button button-secondary upload_image_button" value="<?php echo $label; ?>" data-target-id="<?php echo $field_id; ?>" <?php echo $uploader_button; ?> <?php echo $uploader_title; ?> />
|
||||||
</fieldset><?php
|
</fieldset><?php
|
||||||
|
|
||||||
if ( ! empty( $description ) ) {
|
if ( ! empty( $description ) ) {
|
||||||
|
Reference in New Issue
Block a user