- 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>
10 lines
188 B
PHP
Executable File
10 lines
188 B
PHP
Executable File
<?php
|
|
|
|
class_exists( 'Advanced_Ads', false ) || exit();
|
|
|
|
if ( ! is_admin() ) {
|
|
new Advanced_Ads_Adblock_Finder;
|
|
} elseif ( ! wp_doing_ajax() ) {
|
|
new Advanced_Ads_Adblock_Finder_Admin;
|
|
}
|