File: /var/www/karjerosdiena.lt/wp-content/plugins/wp-user-manager/includes/compatibility/oceanwp.php
<?php
/**
* OceanWP compatibility
*
* @package wp-user-manager
* @copyright Copyright (c) 2023, WP User Manager
* @license https://opensource.org/licenses/gpl-license GNU Public License
* @since 2.8.19
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Ensure the email customizer works when using the OceanWP theme
*/
add_action( 'after_setup_theme', function () {
if ( ! class_exists( 'OCEANWP_Theme_Class' ) ) {
return;
}
if ( isset( $_GET['wpum_email_customizer'] ) ) {
class OceanWP_Customizer {
}
class OceanWP_Customizer_Slider_Control extends \WP_Customize_Control {
}
}
}, 3 );