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,36 @@
<?php
/**
* Page/Post quick edit fields
*
* @package AdvancedAds
* @author Advanced Ads <info@wpadvancedads.com>
* @since 2.0
*
* @var string $post_type current post type.
*/
use AdvancedAds\Admin\Upgrades;
?>
<fieldset class="inline-edit-col-right" disabled>
<div class="inline-edit-col">
<div class="inline-edit-group wp-clearfix">
<label class="alignleft">
<input type="checkbox" name="advads-disable-ads" value="1"/>
<span class="checkbox-title">
<?php echo 'page' === $post_type ? esc_html__( 'Disable ads on this page', 'advanced-ads' ) : esc_html__( 'Disable ads on this post', 'advanced-ads' ); ?>
</span>
</label>
</div>
<div class="inline-edit-group wp-clearfix">
<?php $pro_installed = defined( 'AAP_VERSION' ); ?>
<label class="alignleft">
<input type="checkbox" name="<?php echo esc_attr( $pro_installed ? 'advads-disable-the-content' : '' ); ?>" value="1" <?php echo $pro_installed ? '' : 'disabled'; ?>>
<span class="checkbox-title"><?php esc_html_e( 'Disable automatic ad injection into the content', 'advanced-ads' ); ?></span>
<?php if ( ! $pro_installed ) : ?>
( <?php Upgrades::upgrade_link( '', 'https://wpadvancedads.com/advanced-ads-pro/', 'upgrade-pro-disable-post-quick-edit' ); ?>)
<?php endif; ?>
</label>
</div>
</div>
</fieldset>