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,37 @@
<?php
/**
* Render the ad type parameters meta box on the ad edit screen
*
* @package AdvancedAds
* @author Advanced Ads <info@wpadvancedads.com>
* @since 1.48.2
*
* @var Ad $ad Ad instance.
*/
$ad_type = $ad->get_type_object();
do_action( "advanced-ads-ad-params-before-{$ad->get_type()}", $ad );
do_action( 'advanced-ads-ad-params-before', $ad );
?>
<div id="advanced-ads-tinymce-wrapper" style="display:none;">
<?php
$args = [
// used here instead of textarea_rows, because of display:none.
'editor_height' => 300,
'drag_drop_upload' => true,
];
wp_editor( '', 'advanced-ads-tinymce', $args );
?>
</div>
<div id="advanced-ads-ad-parameters" class="advads-option-list">
<?php
if ( $ad_type->has_size() ) {
include ADVADS_ABSPATH . 'views/admin/metaboxes/ads/ad-parameters-size.php';
}
?>
</div>
<?php
do_action( "advanced-ads-ad-params-after-{$ad->get_type()}", $ad );
do_action( 'advanced-ads-ad-params-after', $ad );