我有个问题。我想在 wordpress 主题上集成彩盒效果,但没有插件。所以我有这个:
<link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/css/colorbox.css" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.1/jquery-ui.min.js"></script>
和这个 :
<script src="<?php echo get_template_directory_uri(); ?>/js/jquery.colorbox.js"> </script>
<script>
jQuery(document).ready(function(){
$("a[href$='.jpg'],a[href$='.png'],a[href$='.gif']").colorbox({transition:"elastic", maxWidth:"80%", maxHeight:"80%", slideshow:"true"});
});
因此,这样,单个图像就可以正常工作。它们在彩盒窗口中打开。但对于画廊,什么都没有。所以,我补充
link="file"
在画廊短代码中,像这样,例如:
[gallery ids="54,53,58,59,66" link="file"]
这样,画廊的图像在颜色框中打开,很好。但问题是每个图像都像单个图像一样打开,没有分页(没有下一个图像和上一个图像)
我正在本地测试该站点,因此无法为您提供链接。Wordpress 3.5.1 没有插件
我不知道如何解决这个问题。
如果有人知道问题出在哪里,那就太好了。
谢谢。