| 1 |
<?php |
| 2 |
defined( 'ABSPATH' ) || exit; |
| 3 |
|
| 4 |
add_action( 'plugins_loaded', 'ultp_elementor_init' ); |
| 5 |
function ultp_elementor_init() { |
| 6 |
if ( ultimate_post()->get_setting( 'ultp_elementor' ) == 'true' ) { |
| 7 |
if ( did_action( 'elementor/loaded' ) ) { |
| 8 |
require_once ULTP_PATH . '/addons/elementor/Elementor.php'; |
| 9 |
Elementor_ULTP_Extension::instance(); |
| 10 |
} |
| 11 |
} |
| 12 |
} |
| 13 |
|