- 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>
14 lines
624 B
PHTML
Executable File
14 lines
624 B
PHTML
Executable File
<div class="control-grid<#=this.getExtraClass()#>">
|
|
<# if ( this.model.config.label ) { #>
|
|
<div class="label">
|
|
<#= this.get_config('label') #>
|
|
<# if ( this.model.config.tooltip ) { #>
|
|
<span class="click" data-tooltip="<#- this.model.config.tooltip #>" data-side="<#- this.model.config.tooltip_side #>"><?php tcb_icon( 'info-circle-solid' ); ?></span>
|
|
<# } #>
|
|
</div>
|
|
<# } #>
|
|
<div class="input">
|
|
<input type="text" class="tve-input-control input change" data-fn-input="onInput" placeholder="<#= this.get_config('placeholder', '') #>" data-fn="changed" <#= this.get_config('extra_attrs', '') #>/>
|
|
</div>
|
|
</div>
|