- 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
756 B
PHTML
Executable File
14 lines
756 B
PHTML
Executable File
<# if ( ! this.model.config.hide_name && this.model.config.name) { #>
|
|
<div class="grey-text">
|
|
<#= this.model.config.name #>
|
|
</div>
|
|
<# } #>
|
|
<label class="tcb-checkbox">
|
|
<input class="tve-checkbox change" type="checkbox" data-fn="check" <#= this.model.config.name? 'data-name="' + this.model.config.name + '"':'' #> value="<#= this.model.config.value ? this.model.config.value : 1 #>"
|
|
<#= this.model.config.checked || this.model.config.default ? 'checked' : '' #> >
|
|
<span class="grey-text"><#= this.model.config.label #></span>
|
|
<# if ( this.model.config.tooltip ) { #>
|
|
<p class="click m-0" data-tooltip="<#- this.model.config.tooltip #>" data-side="<#- this.model.config.tooltip_side #>"><?php tcb_icon( 'info-circle-solid' ); ?></p>
|
|
<# } #>
|
|
</label>
|