我想为我开发到WordPress的模板添加thickbox。此时,我正在尝试使用一个干净的模板,该模板只有header.php
, footer.php
,index.php
, 和functions.php
.
我已经包括了<?php wp_head(); ?>
进入header.php
以及<?php wp_footer(); ?>
进入footer.php
.
我已经包括了wp_head
像这样:
<?php
wp_enqueue_script(\'jquery\');
wp_enqueue_script(\'thickbox\');
wp_enqueue_style(\'thickbox\');
wp_head();
?>
我已将gallery链接类更改为thickbox,代码为functions.php
<?php add_filter( \'wp_get_attachment_link\', \'sant_prettyadd\');
function sant_prettyadd ($content) {
$content = preg_replace("/<a/","<a class=\\"thickbox[slides]\\"",$content,1);
return $content;
}
?>
当我点击画廊图像时,它应该用thickbox打开,但它只打开图像文件。