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,44 @@
<?php
/**
* Plugin Name: Thrive Optimize
* Plugin URI: https://thrivethemes.com/
* Description: Boost Conversion Rates by testing two or more variations of a page
* Version: 10.6
* Author: Thrive Themes
* Author URI: https://thrivethemes.com/
* Text Domain: thrive-optimize
* Domain Path: /languages
* Requires PHP: 7.4
* Requires at least: 6.5
*/
/**
* Supported Cache Plugins:
* - WP Super Cache: the user should clear the cache for the page each time he starts a test on
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
if ( ! defined( 'THRIVE_AB_PLUGIN_FILE' ) ) {
define( 'THRIVE_AB_PLUGIN_FILE', __FILE__ );
}
// Include the main WooCommerce class.
if ( ! class_exists( 'ThriveAB' ) ) {
include_once dirname( __FILE__ ) . '/includes/class-thrive-ab.php';
}
/**
* Main instance of TAB.
*
* Returns the main instance of WC to prevent the need to use globals.
*
* @since 2.1
* @return Thrive_AB
*/
function thrive_ab() {
return Thrive_AB::instance();
}
thrive_ab();