- 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>
15 lines
302 B
PHP
Executable File
15 lines
302 B
PHP
Executable File
<?php
|
|
/**
|
|
* Module backend main file
|
|
*
|
|
* @package AdvancedAds\Pro\Modules\BuddyPress
|
|
* @author Advanced Ads <info@wpadvancedads.com>
|
|
*/
|
|
|
|
// Stop if BuddyPress isn't activated.
|
|
if ( ! class_exists( 'BuddyPress', false ) ) {
|
|
return;
|
|
}
|
|
|
|
( new AdvancedAds\Pro\Modules\BuddyPress\Admin() )->hooks();
|