-2

所以朋友们,我试图在我的 wordpress 主题中使用 prettyPhoto,但它根本不起作用。它的两个文件 - prettyPhoto.css 和 jquery.prettyPhoto.js 都在 header.php 文件中正确链接。

这是我的 header.php 文件中文件的链接 -

<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/js/prettyPhoto/css/prettyPhoto.css" type="text/css" media="screen" title="prettyPhoto main stylesheet" charset="utf-8" />
<script src="<?php bloginfo('stylesheet_directory'); ?>/js/prettyPhoto/js/jquery.prettyPhoto.js" type="text/javascript"></script>

如果这个问题是由于没有使用 wp_enqueue_script() 造成的,请告诉我。

这就是我将要与 prettyPhoto 一起使用的图像链接的方式 -

<a title="test image" href="images/new-image.png" rel="prettyPhoto[]"><img src="images/new-image.png" alt="Some Alternate Text" /></a>

当我单击图像时,它不会在 prettyPhoto 中打开。

4

1 回答 1

0

您是否构建了自定义主题以使其正常工作。如果是这样,可能存在对 header.php index.php 或 footer.php 等文件的其他依赖项,这可能导致它无法工作。切换到默认的二十一主题,看看效果如何。如果它在那里工作,那么你的主题文件有问题,可能是 footer.php 或 index.php 等。

于 2012-10-20T04:56:13.080 回答