如何让WP Featherlight与图库一起使用?

时间:2017-01-09 18:57:04

标签: javascript wordpress lightbox featherlight.js

如何让WordPress的WP Featherlight插件与图库一样使用?它允许仅在将图像作为图库放置到帖子时滚动图像。但是,如何像所有其他类似的插件一样滚动帖子中的所有图像呢?

您可以在此处下载插件:https://wordpress.org/plugins/wp-featherlight/

1 个答案:

答案 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();...}