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,26 @@
<?php
/**
* Template to show the ad.
*
* @package Advanced_Ads_Pro
*
* @var string $placement_content content of the placement.
* @var string $public_slug public slug or placement ID send as $_GET['p'] to allow placement-specific usage of the hooks.
*/
?>
<!DOCTYPE html>
<html>
<head>
<meta name="robots" content="noindex,nofollow">
<?php do_action( 'advanced-ads-pro-ad-server-template-head', $public_slug ); ?>
</head>
<body style="margin: 0;" >
<?php do_action( 'advanced-ads-pro-ad-server-template-after-opening-body', $public_slug ); ?>
<?php
// phpcs:ignore
echo $placement_content;
?>
<?php do_action( 'advanced-ads-pro-ad-server-template-before-closing-body', $public_slug ); ?>
</body>
</html>