Commit inicial - WordPress Análisis de Precios Unitarios

- 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>
This commit is contained in:
root
2025-11-03 21:04:30 -06:00
commit a22573bf0b
24068 changed files with 4993111 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<div class="state-section">
<a href="javascript:void(0)" class="click state-switch trigger" data-fn="toggle_dropdown">
<span class="label"><?php echo __( 'State:', 'thrive-cb' ); ?></span>
<strong class="state-action">
<span class="current-state"><?php echo __( 'Normal', 'thrive-cb' ); ?></span>
<span class="chevron"><?php tcb_icon( 'chevron-down-regular' ); ?></span>
</strong>
</a>
<button class="click reset-state-button tcb-hidden" data-fn="toggleResetState" data-tooltip="Reset State">
<span><?php tcb_icon( 'reset' ); ?></span>
</button>
<ul class="drop-content tcb-hidden">
<li class="selected" data-state="default">
<a href="javascript:void(0)" class="click" data-state="default" data-fn="done"><?php echo __( 'Normal', 'thrive-cb' ) ?></a>
</li>
<li data-state="hover">
<a href="javascript:void(0)" class="click" data-state="hover" data-fn="state_select"><?php echo __( 'Hover', 'thrive-cb' ) ?></a>
</li>
<li data-state="active" class="tcb-hidden">
<a href="javascript:void(0)" class="click" data-state="active" data-fn="state_select"><?php echo __( 'Active', 'thrive-cb' ) ?></a>
</li>
<li data-state="expanded" class="tcb-hidden">
<a href="javascript:void(0)" class="click" data-state="expanded" data-fn="state_select"><?php echo __( 'Expanded', 'thrive-cb' ) ?></a>
</li>
</ul>
</div>