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,30 @@
<?php
/**
* Success notice for the starter setup.
*
* @package AdvancedAds
* @author Advanced Ads <info@wpadvancedads.com>
* @since 1.x.x
*
* @var string $last_post_link URL to the last created post.
*/
?>
<div class="notice notice-success advads-admin-notice message">
<h2>
<?php esc_html_e( '2 Test Ads successfully added!', 'advanced-ads' ); ?>
</h2>
<p>
<?php esc_html_e( 'Look below for the list of created ads.', 'advanced-ads' ); ?>
</p>
<p>
<a href="<?php echo esc_url( admin_url( 'admin.php?page=advanced-ads-placements' ) ); ?>"><?php esc_attr_e( 'Visit list of placements', 'advanced-ads' ); ?></a>
</p>
<?php if ( $last_post_link ) : ?>
<p>
<a href="<?php echo esc_url( $last_post_link ); ?>" target="_blank">
<?php esc_html_e( 'See them in action', 'advanced-ads' ); ?>
</a>
</p>
<?php endif; ?>
</div>