如何在gutenberg画廊中的链接上添加rel atribute

时间:2018-12-13 13:34:38

标签: wordpress image-gallery fancybox-3 wordpress-gutenberg gutenberg-blocks

如何在我的网站上使用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);
}

现在此代码不起作用。

1 个答案:

答案 0 :(得分:1)

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;
}