回复至:求内容页图片全屏查看,可缩放/左右滑动插件或代码

孙锡源
  • 文章数量: 704
@ibadboy

我大概查了一下,你这个需求是没有现成插件能一次性满足的。所以需要代码定制一下,也就是批量为老图加链接。

将以下代码加到主题 functions.php 里,之后配合任意一款灯箱插件就能实现你要的效果了:

add_filter( 'the_content', function ( $content ) {
    $pattern     = "/<img(.*?)src=('|")(.*?).(bmp|gif|jpeg|jpg|png)('|")(.*?)>/i";
    $replacement = '<a href=$2$3.$4$5 rel="lightbox"><img$1href=$2$3.$4$5 rel="lightbox"$6></a>';

    return preg_replace( $pattern, $replacement, $content );
} );

 

来自秦皇岛, 河北, 中国