如何让WordPress的WP Featherlight插件与图库一样使用?它允许仅在将图像作为图库放置到帖子时滚动图像。但是,如何像所有其他类似的插件一样滚动帖子中的所有图像呢?
答案 0 :(得分:0)
只需要为所有图片调用featherlightGallery()
即可。可以通过更改findGalleries
函数的代码来完成:
function findGalleries() {
// Treat all images like a gallery
$body.find( 'a[href]' ).filter( testImages ).featherlightGallery();
...
}
wpFeatherlight.pkgd.min.js
文件的上述代码的优化版本:
function g(){j.find("a[href]").filter(d).featherlightGallery();...}