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,27 @@
<?php
/**
* Ad debug output template.
*
* @package AdvancedAds
* @author Advanced Ads <info@wpadvancedads.com>
* @since 1.x.x
*
* @var string $wrapper_id Wrapper ID.
* @var string $style Wrapper style.
* @var array $content Debug content.
*/
use AdvancedAds\Utilities\Conditional;
if ( ! Conditional::is_amp() ) :
ob_start();
echo Advanced_Ads_Utils::get_inline_asset( ob_get_clean() ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
endif;
?>
<div id="<?php echo esc_attr( $wrapper_id ); ?>" style="<?php echo esc_attr( $style ); ?>">
<strong><?php esc_html_e( 'Ad debug output', 'advanced-ads' ); ?></strong>
<br><br>
<?php echo implode( '<br><br>', $content ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
<br><br>
<a style="color: green;" href="https://wpadvancedads.com/manual/ad-debug-mode/?utm_source=advanced-ads&utm_medium=link&utm_campaign=ad-debug-mode" target="_blank" rel="nofollow"><?php esc_html_e( 'Find solutions in the manual', 'advanced-ads' ); ?></a>
</div>

View File

@@ -0,0 +1,13 @@
<?php
/**
* Edit bar for ads.
*
* @package AdvanceAds
*
* @var Ad $this Ad instance.
*/
?>
<div class="advads-edit-bar advads-edit-appear">
<a href="<?php echo esc_url( $this->get_edit_link() ); ?>" class="advads-edit-button" title="<?php echo esc_attr( wp_strip_all_tags( $this->get_title() ) ); ?>" rel="nofollow"><span class="dashicons dashicons-edit"></span></a>
</div>

View File

@@ -0,0 +1 @@
<?php // Silence is golden

View File

@@ -0,0 +1,16 @@
<?php
/**
* Represents the view for the public-facing component of the plugin.
*
* This typically includes any information, if any, that is rendered to the
* frontend of the theme when the plugin is activated.
*
* @package Plugin_Name
* @author Your Name <email@example.com>
* @license GPL-2.0+
* @link http://example.com
* @copyright 2013 Your Name or Company Name
*/
?>
<!-- This file is used to markup the public facing aspect of the plugin. -->