Lightbox将无法在我的wordpress网站上正确加载

时间:2014-08-08 02:31:06

标签: php jquery wordpress lightbox

我无法使灯箱http://lokeshdhakar.com/projects/lightbox2正常工作。我已经能够创建一个新的测试html文档并使灯箱工作。但是,当我把它放到我的网站时,我只能加载图像。 我的网站由(header.php ---- portfolio.php(主要内容)---- footer.php)组成

的header.php

<head>
<link rel="shortcut icon" href="<?php bloginfo('template_directory'); ?>/images/favicon.ico" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;">
<!--<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />-->
<title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?></title>
<link href="<?php bloginfo('stylesheet_url'); ?>" rel="stylesheet" type="text/css" />
<link href='http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300&subset=latin,cyrillic-ext' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Iceland' rel='stylesheet' type='text/css'>

<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Karla%7CMontserrat">

<link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>css/screen.css">

<link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>css/lightbox.css">

<script language="javascript" type="text/javascript"></script>
</head>
<body>
<!--header end-->

Portfolio.php

<img class="example-image" src="<?php bloginfo('template_directory'); ?>/img/demopage/image-1.jpg" alt="image-1" />'

footer.php

<script src="js/jquery-1.11.0.min.js"></script>
<script src="js/lightbox.js"></script>
</body>
</html>

我对此感到迷茫,并希望得到一些帮助。

2 个答案:

答案 0 :(得分:1)

您的图片需要指向原始图片的链接:

Portfolio.php

<a href="<?php bloginfo('template_directory'); ?>/img/demopage/image-1.jpg" data-lightbox="image-1" data-title="My caption">
  <img class="example-image" src="<?php bloginfo('template_directory'); ?>/img/demopage/image-1-small.jpg" alt="image-1" />
</a>

答案 1 :(得分:0)

查看Lightbox文档,它提到您需要以这种方式列出图像。

  

将数据灯箱属性添加到任何图像链接以激活Lightbox。对于属性的值,请为每个图像使用唯一的名称。例如:

<a href="img/image-1.jpg" data-lightbox="image-1" data-title="My caption">Image #1</a>