我有一个上载媒体的ACF,它在wordpress画廊中传递,我使用“ Photoswipe Maisonry”插件在前端显示它。
尝试打开图像时,除了灯箱以外,其他所有功能都可以正常工作。灯箱会打开,但在0.5秒后会立即打开图片的网址。这样,您将无法浏览照片,而每次都需要返回。
photoswipe插件使用以下代码在网格中输出图像:
<figure class="msnry_item" itemscope itemtype="http://schema.org/ImageObject">
<a href="'. $full[0] .'" itemprop="contentUrl" data-size="'.$full[1].'x'.$full[2].'" data-caption="'. $image_caption .'" >
<img src='. $thumb[0] .' itemprop="thumbnail" alt="'.$image_alttext.'" />
</a>
</figure>