| 1 |
<?php |
| 2 |
|
| 3 |
defined( 'ABSPATH' ) || exit; |
| 4 |
/** |
| 5 |
* Smart Post Oxygen Builder integration function. |
| 6 |
* |
| 7 |
* Loads the Oxygen builder integration file if Oxygen is active. |
| 8 |
* |
| 9 |
* @since 4.0.0 |
| 10 |
* @return void |
| 11 |
*/ |
| 12 |
function smart_post_oxygen_builder() { |
| 13 |
if ( class_exists( 'OxygenElement' ) ) { |
| 14 |
require_once SP_PC_PATH . 'admin/page-builder/oxygen/oxygen.php'; |
| 15 |
} |
| 16 |
} |
| 17 |
add_action( 'init', 'smart_post_oxygen_builder' ); |
| 18 |
|