quadmenu/redux/ReduxCore/inc/class.thirdparty.fixes.php
2025-01-20 16:38:41 +05:30

16 lines
417 B
PHP

<?php
// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
// Fix for the GT3 page builder: http://www.gt3themes.com/wordpress-gt3-page-builder-plugin/
/** @global string $pagenow */
if ( has_action( 'ecpt_field_options_' ) ) {
global $pagenow;
if ( $pagenow === 'admin.php' ) {
remove_action( 'admin_init', 'pb_admin_init' );
}
}