# ultimate-post-kit/4.1.18/includes/live-copy/class-live-copy.php

Ultimate Post Kit – Elementor Post Grid, Post Carousel, Post Slider &amp; Blog Layout Widgets, version 4.1.18. 18 lines.

- Page: https://pluginprobe.com/plugins/ultimate-post-kit/4.1.18/code/includes/live-copy/class-live-copy.php
- Raw: https://pluginprobe.com/plugins/ultimate-post-kit/4.1.18/raw/includes/live-copy/class-live-copy.php
- Modified: 2026-07-26T12:25:34+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/ultimate-post-kit/4.1.18/code/includes/live-copy/class-live-copy.php#L10-L20`.

```php
<?php

namespace UltimatePostKit\Includes\LiveCopy;


if (!defined('ABSPATH')) exit; // Exit if accessed directly
class BdThemes_Live_Copy {

    function __construct() {
        add_action('elementor/editor/after_enqueue_scripts', [$this, 'live_copy_enqueue']);
    }

    public function live_copy_enqueue() {
        wp_enqueue_script('bdt-live-copy-scripts', BDTUPK_URL . 'includes/live-copy/assets/bdt-live-copy.js', ['jquery', 'elementor-editor'], BDTUPK_VER, true);
    }
}
new BdThemes_Live_Copy();

```
