如何让 WP Featherlight 像画廊一样处理图像?
How can I make WP Featherlight work with images like with galleries?
如何使 WordPress 的 WP Featherlight 插件像画廊一样处理图像?只有当图像被放置到 post 作为图库时,它才允许滚动图像。但是我怎样才能让它像所有其他类似插件一样滚动 post 中的所有图像?
只需为所有图片调用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();...}
如何使 WordPress 的 WP Featherlight 插件像画廊一样处理图像?只有当图像被放置到 post 作为图库时,它才允许滚动图像。但是我怎样才能让它像所有其他类似插件一样滚动 post 中的所有图像?
只需为所有图片调用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();...}