/ltkk-online-editor

LTKK Online Editor v1.0 - Công cụ thực thi HTML/CSS/JS trên nền web hỗ trợ cho các bài chia sẻ của Lập Trình Không Khó

Primary LanguageJavaScript

functions.php

/* Add JS for online editor */

function create_demo_url() {
    ?>
      if (is_singular()) {
        <script>
            var postId = window.location.href.replace(/^.*nguyenvanhieu.vn/i, "").replace(/\/[?&].*/i, "").replace(/\//g, '');
            var demos = document.querySelectorAll('.ltkk-demo a');
            for (x of demos) {
                    let idx = x.getAttribute('data-idx');
                let url = "https://nguyenvanhieu.vn/editor/?url=" + postId + "&idx=" + idx;
                x.href = url;
            }
        </script>
    }
    <?php
}
add_action('wp_footer', 'create_demo_url');