我的WordPress网站在每篇文章的顶部显示特色图片。下面是来自post.php
生成特征图像。
<?php if ( current_theme_supports( \'get-the-image\' ) ) get_the_image( array( \'meta_key\' => \'Thumbnail\', \'size\' => \'single-thumbnail\', \'link_to_post\' => false, \'image_class\' => \'featured\', \'attachment\' => false ) ); ?>
此代码只输出一个标准
<img>
标记到页面中。例如:
<img src="http://www.ericanastas.com/wp-content/uploads/2015/07/2015-04-10_190211-636x460.png" alt="Parkmerced Block 22 Geometry" class="single-thumbnail featured">
但是,我添加到帖子内容中的其他图像在单击时显示为灯箱。下面是其中一幅图像的HTML。
<a href="http://www.ericanastas.com/wp-content/uploads/2015/07/2015-04-10_190211.png" rel="lightbox">
<img class="alignnone wp-image-2770 size-single-thumbnail" src="http://www.ericanastas.com/wp-content/uploads/2015/07/2015-04-10_190211-636x460.png" alt="2015-04-10_190211" width="636" height="460" style="opacity: 1;">
</a>
我想在每篇文章顶部的特色图片中添加相同的LightBox功能。我熟悉HTML/CSS/JavaScript,但对PHP和WordPress非常陌生。有人能帮我弄清楚我需要添加什么代码才能使其正常工作吗?