- 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>
19 lines
653 B
PHP
Executable File
19 lines
653 B
PHP
Executable File
<?php
|
|
/**
|
|
* Support callout.
|
|
*
|
|
* @package Advanced_Ads
|
|
* @since 1.0.0
|
|
*/
|
|
|
|
use AdvancedAds\Utilities\Data;
|
|
?>
|
|
|
|
<div id="advads-support-callout">
|
|
<p class="advads-notice-inline advads-idea">
|
|
<a href="<?php echo esc_url( Data::support_url( '/?utm_source=advanced-ads&utm_medium=link&utm_campaign=overview-notices-support' ) ); ?>" target="_blank"><strong><?php esc_html_e( 'Problems or questions?', 'advanced-ads' ); ?></strong>
|
|
<?php esc_html_e( 'Save time and get personal support.', 'advanced-ads' ); ?> <strong style="text-decoration: underline;"><?php esc_html_e( 'Ask your question!', 'advanced-ads' ); ?></strong>
|
|
</a>
|
|
</p>
|
|
</div>
|