0

如何在我的网站上制作fancybox 3。我将此代码用于旧画廊:

add_filter('wp_get_attachment_link', 'rc_add_rel_attribute');
function rc_add_rel_attribute($link) {
global $post;
return str_replace('<a href', '<a data-fancybox="images" href', $link);
}

现在这段代码不起作用。

4

1 回答 1

2
add_filter('the_content', 'aggiungi_fancybox');

function aggiungi_fancybox($content) {
       global $post;
       $pattern ="/<a(.*?)href=('|\")(.*?).(bmp|gif|jpeg|jpg|png)('|\")(.*?)>/i";
       $replacement = '<a$1href=$2$3.$4$5 data-fancybox="gallery" title="'.$post->post_title.'"$6>';
       $content = preg_replace($pattern, $replacement, $content);
       return $content;
}
于 2019-03-27T10:56:25.150 回答