这是我的问题。我目前正在使用WordPress,显然出于安全原因,它不允许使用脚本标签。所以我将其上传到单独的服务器上。现在我的问题是,是否可以仅在Wordpress页面上将链接的内容显示为小部件,还是在一个或另一个基本问题中犯了一个大错误?
或者换句话说,我必须做什么,以便此脚本可嵌入。 Google搜索总是给出关于如何嵌入内容的解释,而不是如何传递内容的解释。
代码如下:
<html>
<center>
<h3>
<p id="demo"></p>
</h3>
</center>
<script>
var countDownDate = new Date("Dec 13, 2018 00:00:00").getTime();
var x = setInterval(function() {
var now = new Date().getTime();
var distance = countDownDate - now;
if (distance >= 0){
// Time calculations for days, hours, minutes and seconds
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
// Display the result in the element with id="demo"
document.getElementById("demo").innerHTML = days + "d " + hours + "h "
+ minutes + "m " + seconds + "s " ;}
// If the count down is finished, write some text
if (distance < 0) {
distance = Math.abs(distance);
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
// Display the result in the element with id="demo"
document.getElementById("demo").innerHTML = days + "d " + hours + "h "
+ minutes + "m " + seconds + "s " ;
}
}, 1000);
</script>
</html>
答案 0 :(得分:0)
Wordpress绝对允许script标签。您将在您的functions.php文件中添加如下一行,以将脚本正确添加到您的Wordpress网站:
wp_enqueue_script ( 'custom-script', get_template_directory_uri() . '/js/custom-script.js' );
答案 1 :(得分:0)
WordPress在用户提供的大多数内容中都阻止了JS,但是您仍然可以将JS用作模板文件中主题的一部分,以及在WordPress配置中加载自己的自定义文件,如下所示:
https://developer.wordpress.org/themes/basics/including-css-javascript/
主题所需的任何其他JavaScript文件都应使用wp_enqueue_script加载。这样可以确保正确的加载和缓存,并允许使用条件标签来定位特定页面。这些是可选的。