如何将Lightbox添加到附件?

时间:2012-02-27 作者:Terrell Anderson

如何添加灯箱功能

rel=“灯箱”

至以下代码

<a href="<?php echo wp_get_attachment_url($post->ID); ?>" title="<?php echo wp_specialchars( get_the_title($post->ID), 1 ) ?>"><?php echo wp_get_attachment_image($post->ID, \'large\' ); ?></a>

2 个回复
SO网友:helgatheviking

我认为大多数lightbox插件都要求链接上有rel或class属性,因此:

<a href="<?php echo wp_get_attachment_url($post->ID); ?>" rel="lightbox" title="<?php echo wp_specialchars( get_the_title($post->ID), 1 ) ?>"><?php echo wp_get_attachment_image($post->ID, \'large\' ); ?></a>

SO网友:sorich87

@helgatheviking的解决方案是正确的。如果不起作用,则说明其他问题(例如,lightbox脚本是否正确排队等)

或者,您可以使用此插件:http://wordpress.org/extend/plugins/jquery-lightbox-balupton-edition/.

或者WordPress插件库中为数不多的其他插件之一:http://wordpress.org/extend/plugins/tags/lightbox.

结束

相关推荐

how to edit attachments?

在将例如文件附加到帖子时,如何在事后编辑/删除它们?在帖子编辑器中找不到任何内容。谢谢