- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
59 lines
2.1 KiB
PHP
Executable File
59 lines
2.1 KiB
PHP
Executable File
<div class="item">
|
|
<?php
|
|
$o = new wpdreamsThemeChooser("themes", __('Theme Chooser', 'ajax-search-pro'), array(
|
|
"themes" => $_themes,
|
|
"value" => $sd['themes']
|
|
));
|
|
$params[$o->getName()] = $o->getData();
|
|
?>
|
|
</div>
|
|
<div class="item item-flex-nogrow item-flex-wrap wpd-isotopic-width">
|
|
<?php
|
|
$o = new wpdreamsTextSmall("box_width", __('Search box width', 'ajax-search-pro'), array(
|
|
'icon' => 'desktop',
|
|
'value' => $sd['box_width']
|
|
));
|
|
$params[$o->getName()] = $o->getData();
|
|
$o = new wpdreamsTextSmall("box_width_tablet", '', array(
|
|
'icon' => 'tablet',
|
|
'value' => $sd['box_width_tablet']
|
|
));
|
|
$params[$o->getName()] = $o->getData();
|
|
$o = new wpdreamsTextSmall("box_width_phone", '', array(
|
|
'icon' => 'phone',
|
|
'value' => $sd['box_width_phone']
|
|
));
|
|
$params[$o->getName()] = $o->getData();
|
|
?>
|
|
<div class="descMsg item-flex-grow item-flex-100">
|
|
<?php echo sprintf(
|
|
__('Use with <a href="%s" target="_blank">CSS units</a> (like %s or %s or %s ..) Default: <strong>%s</strong>', 'ajax-search-pro'),
|
|
'https://www.w3schools.com/cssref/css_units.asp', '10px', '50%', 'auto', '100%'
|
|
); ?>
|
|
</div>
|
|
</div>
|
|
<div class="item"><?php
|
|
$o = new wpdreamsNumericUnit("boxheight", __('Search box height', 'ajax-search-pro'), array(
|
|
'value' => $sd['boxheight'],
|
|
'units'=>array('px'=>'px')
|
|
));
|
|
$params[$o->getName()] = $o->getData();
|
|
?>
|
|
</div>
|
|
<div class="item"><?php
|
|
$o = new wpdreamsGradient("boxbackground", __('Search box background color', 'ajax-search-pro'), $sd['boxbackground']);
|
|
$params[$o->getName()] = $o->getData();
|
|
?>
|
|
</div>
|
|
<div class="item">
|
|
<?php
|
|
$o = new wpdreamsBorder("boxborder", __('Search box border', 'ajax-search-pro'), $sd['boxborder']);
|
|
$params[$o->getName()] = $o->getData();
|
|
?>
|
|
</div>
|
|
<div class="item">
|
|
<?php
|
|
$o = new wpdreamsBoxShadow("boxshadow", __('Search box Shadow', 'ajax-search-pro'), $sd['boxshadow']);
|
|
$params[$o->getName()] = $o->getData();
|
|
?>
|
|
</div>
|