PATH:
home
/
thecwrif
/
public_html
/
wp-content
/
plugins
/
header-footer-elementor
/
themes
/
hello-elementor
<?php /** * HFE_Hello_Elementor_Compat setup * * @package header-footer-elementor */ /** * Hello Elementor compatibility. */ class HFE_Hello_Elementor_Compat { /** * Instance of HFE_Hello_Elementor_Compat. * * @var HFE_Hello_Elementor_Compat */ private static $instance; /** * Initiator */ public static function instance() { if ( ! isset( self::$instance ) ) { self::$instance = new HFE_Hello_Elementor_Compat(); if ( ! class_exists( 'HFE_Default_Compat' ) ) { require_once HFE_DIR . 'themes/default/class-hfe-default-compat.php'; } } return self::$instance; } } HFE_Hello_Elementor_Compat::instance();
[-] class-hfe-hello-elementor-compat.php
[edit]
[+]
..