Ejemplo n.º 1
0
<?php

$default_value = '';
if ($this->setting->default) {
}
$default_value = cs_att('data-huebert-default-value', $this->setting->default);
?>
<label>
	<span class="customize-control-title"><?php 
echo esc_html($this->label);
?>
</span>
	<input data-cs-customizer-control="huebert" type="text" id="input_<?php 
echo $this->id;
?>
" value="<?php 
echo $this->value();
?>
" <?php 
echo $default_value . ' ';
$this->link();
?>
/>
</label>

<script>
var options = {};
<?php 
if ($this->setting->default) {
    ?>
	options.reset = 'default';
Ejemplo n.º 2
0
function cs_atts($atts, $echo = true)
{
    $result = '';
    foreach ($atts as $att => $content) {
        $result .= cs_att($att, $content, false) . ' ';
    }
    if ($result) {
        echo $result;
    }
    return $result;
}