- 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>
18 lines
491 B
PHP
Executable File
18 lines
491 B
PHP
Executable File
<?php
|
||
|
||
/**
|
||
* MailPoet – emails and newsletters in WordPress
|
||
* https://wordpress.org/plugins/mailpoet/
|
||
*/
|
||
if ( ! class_exists( 'BWFAN_Compatibility_With_MailPoet' ) ) {
|
||
class BWFAN_Compatibility_With_MailPoet {
|
||
public function __construct() {
|
||
if ( ! empty( WooFunnels_AS_DS::$unique ) || true === BWFAN_Common::$change_data_strore ) {
|
||
BWFAN_Common::remove_actions( 'init', 'MailPoet\Config\Initializer', 'initialize' );
|
||
}
|
||
}
|
||
}
|
||
|
||
new BWFAN_Compatibility_With_MailPoet();
|
||
}
|