Javascript 파일 내에 테마 파일의 경로를 포함시켜야합니다. 나는 이것에 대해 어떻게 갈 것인가? 나는 이미 시도했다 :
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";
}
이것은 나에게 경로를 제공하지 않지만 <?php get_stylesheet_directory_uri(); ?>
실제 경로 대신 삽입 합니다. 어떤 아이디어? 미리 감사드립니다!