| 1 |
<?php |
| 2 |
|
| 3 |
defined( 'ABSPATH' ) || exit; |
| 4 |
|
| 5 |
function ultp_postx_addon_dynamic_content() { |
| 6 |
if ( ultimate_post()->get_setting( 'ultp_dynamic_content' ) == 'true' ) { |
| 7 |
require_once ULTP_PATH . '/addons/dynamic_content/includes/DCController.php'; |
| 8 |
new \ULTP\DCController(); |
| 9 |
} |
| 10 |
} |
| 11 |
add_action( 'init', 'ultp_postx_addon_dynamic_content' ); |
| 12 |
|