Tôi cần bao gồm đường dẫn đến tệp chủ đề của mình trong tệp javascript. Làm thế nào tôi sẽ đi về điều này? Tôi đã thử:
var templateUrl = "<?php get_stylesheet_directory_uri(); ?>";
function LightboxOptions() {
this.fileLoadingImage = "'"+templateUrl+"/img/loading.gif'";
this.fileCloseImage = "'"+templateUrl+"/img/close.png'";
this.resizeDuration = 700;
this.fadeDuration = 500;
this.labelImage = "Image";
this.labelOf = "of";
}
Điều này không cho tôi đường dẫn, mà chỉ chèn <?php get_stylesheet_directory_uri(); ?>
thay vì đường dẫn thực tế. Có ý kiến gì không? Cảm ơn trước!