File Manager / wp-content Search Upload New Item Settings File "db5.php" Full path: /home1/epichome/public_html/wp-content/db5.php File size: 60.67 B (60.67 KB bytes) MIME-type: text/x-php Charset: utf-8 Download Open Edit Advanced Editor Back
<?php
class SendPress_Font_Customizer extends WP_Customize_Control {
public $type = 'mailtpl_font_size';
/**
* Render the control's content.
*/
public function render_content() {
$range_min = '1';
$range_max = '100';
if( $this->id == 'mailtpl_body_size' ) {
$range_min = '320';
$range_max = '1280';
}
?> <label>
<span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span>
<div class="font_value"><?php echo esc_attr( $this->value() ); ?></div>
<input <?php $this->link(); ?> type="range" min="<?php echo $range_min;?>" max="<?php echo $range_max;?>" step="1" value="<?php echo esc_attr( $this->value() ); ?>" class="mailtpl_range" />
<?php if ( ! empty( $this->description ) ) : ?>
<p><span class="description customize-control-description"><?php echo $this->description; ?></span></p>
<?php endif; ?>
</label>
<?php
}
}