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,16 @@
<form class="tve-prevent-content-edit" role="search" method="get" action="<?php echo esc_attr( home_url() ); ?>">
<div class="thrv-sf-submit" data-button-layout="<?php echo esc_attr( $data['button-layout'] ); ?>" data-css="<?php echo esc_attr( $data['data-css-submit'] ); ?>">
<button type="submit">
<span class="tcb-sf-button-icon">
<span class="thrv_wrapper thrv_icon tve_no_drag tve_no_icons tcb-icon-inherit-style tcb-icon-display" data-css="<?php echo esc_attr( $data['data-css-icon'] ); ?>"><?php echo $data['button-icon']; //phpcs:ignore ?></span>
</span>
<span class="tve_btn_txt"><?php echo esc_html( $data['button-label'] ); ?></span>
</button>
</div>
<div class="thrv-sf-input thrv-sf-input-hide" data-css="<?php echo esc_attr( $data['data-css-input'] ); ?>">
<input type="search" placeholder="<?php echo esc_attr( $data['input-placeholder'] ); ?>" name="s" value="<?php echo esc_attr( get_search_query() ); ?>"/>
</div>
<?php foreach ( $data['post-types'] as $type => $label ) : ?>
<input type="hidden" class="tcb_sf_post_type" name="tcb_sf_post_type[]" value="<?php echo esc_attr( $type ); ?>" data-label="<?php echo esc_attr( $label ); ?>"/>
<?php endforeach; ?>
</form>