0

我完成了将http://www.cobalt-chromium-toxicity.com/创建为静态 html/css 网站,并尝试将其转换为 Wordpress。我失去了表单上的验证功能以及底部的隐藏/显示视频功能。

在我拥有的网站的 Wordpress 版本中

<script type="text/javascript" src="
<?php bloginfo('template_directory'); ?>/js/jquery.validate.js">
</script>

<script type="text/javascript" src="
<?php bloginfo('template_directory'); ?>/js/videos.js">
</script>

在上面的 header.php 中

<?php wp_head(); ?>

</head>
4

2 回答 2

0

我认为"echo get_template_directory_uri();",而不是"bloginfo('template_directory');"会为你工作。

于 2014-01-13T07:15:40.640 回答
-3

我认为您缺少php 代码中的回声,例如:

<?php echo bloginfo('template_directory'); ?>
于 2013-01-15T23:23:16.597 回答