- 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>
13 lines
266 B
PHP
Executable File
13 lines
266 B
PHP
Executable File
<?php
|
|
/**
|
|
* Default hooks
|
|
*
|
|
* @since 2.0.0
|
|
* @package AdvancedAds
|
|
* @author Advanced Ads <info@wpadvancedads.com>
|
|
*/
|
|
|
|
use AdvancedAds\Framework\Utilities\Formatting;
|
|
|
|
add_filter( 'advanced-ads-ad-get-once_per_page', [ Formatting::class, 'string_to_bool' ] );
|