PluginProbe
Ultimate Post Kit – Elementor Post Grid, Post Carousel, Post Slider & Blog Layout Widgets / 4.1.2
Ultimate Post Kit – Elementor Post Grid, Post Carousel, Post Slider & Blog Layout Widgets v4.1.2
4.5.4 4.2.1 4.2.2 4.2.3 4.5.0 4.5.2 4.5.3 4.2.0 4.1.18 4.1.17 4.1.16 4.1.15 4.1.14 4.1.13 4.1.12 4.1.11 4.1.10 4.1.9 4.1.8 4.0.9 4.1.0 4.1.1 4.1.2 4.1.3 4.1.4 All 146 releases
ultimate-post-kit / includes / live-copy / class-live-copy.php

class-live-copy.php in Ultimate Post Kit – Elementor Post Grid, Post Carousel, Post Slider & Blog Layout Widgets 4.1.2, at includes/live-copy/class-live-copy.php

18 lines 507 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace UltimatePostKit\Includes\LiveCopy;
4
5
6 if (!defined('ABSPATH')) exit; // Exit if accessed directly
7 class BdThemes_Live_Copy {
8
9 function __construct() {
10 add_action('elementor/editor/after_enqueue_scripts', [$this, 'live_copy_enqueue']);
11 }
12
13 public function live_copy_enqueue() {
14 wp_enqueue_script('bdt-live-copy-scripts', BDTUPK_URL . 'includes/live-copy/assets/bdt-live-copy.js', ['jquery', 'elementor-editor'], BDTUPK_VER, true);
15 }
16 }
17 new BdThemes_Live_Copy();
18