将图片暗箱特效集成到WordPress主题中

所谓的暗箱,就是点击小图片弹出窗口并显示大图片,类似的Wordpress插件众多,比如:wp-slimbox2、jQueryLightbox、jQuery Colorbox、、Gameplorer`s WPColorBox、shadowbox-js,加上我之前用的Auto Highslide等等,功能效果都相似。其实不用插件简单几步就可将这一特效集成到WordPress主题中,而且加载的文件也比插件小的多。喜欢折腾的童鞋可以参照下面的方法操作:

首先,下载所需文件,解压后将pirobox文件夹内的所有文件放到你所使用主题的目录中。

  pirobox.zip (46.5 KB)

其次,打开主题header模版文件,在前面,分别添加:

所需样式:

[code lang=”php”]<link rel="stylesheet" href="<?php bloginfo(‘template_url’); ?>/img/style.css" />
[/code]

必须的jquery.min.js及特效pirobox.min.js文件:

[code lang=”php”]
<script type="text/javascript" src="<?php bloginfo(‘stylesheet_directory’); ?>/js/jquery.min.js"></script>
<script type="text/javascript" src="<?php bloginfo(‘template_directory’); ?>/js/pirobox.min.js"></script>
<script type="text/javascript">// <![CDATA[

$(document).ready(function() {
$().piroBox({
my_speed: 400, //animation speed
bg_alpha: 0.3, //background opacity
slideShow : true, // true == slideshow on, false == slideshow off
slideSpeed : 4, //slideshow duration in seconds(3 to 6 Recommended)
close_all : ‘.piro_close,.piro_overlay’// add class .piro_overlay(with comma)if you want overlay click close piroBox
});
});
// ]]></script>
[/code]

如果你所使用的主题已加载了jquery.js,可以免去jquery.min.js文件加载代码。

最后,集成该特效除了加载必须的JS和样式文件,关键是为日志中的图片链接自动添加JS特效所需的固定标签属性(class=”pirobox_gall”)。将下面代码扔到主题functions.php中:

[code lang=”php”]
//自动添加标签属性
add_filter(‘the_content’, ‘pirobox_gall_replace’);
function pirobox_gall_replace ($content)
{ global $post;
$pattern = "/<a href="(‘|&quot;)([^"> $replacement = ‘</a><a class="pirobox_gall">$7</a>’;
$content = preg_replace($pattern, $replacement, $content);
return $content;
}
[/code]