The simplest way to modify image links in WordPress WYSIWYG editors!
https://www.powderkegwebdesign.com/simplest-way-modify-image-links-wordpress-wysiwyg-editors/
The simplest way to modify image links in WordPress WYSIWYG editors!
function my_addlightboxrel($content) {
global $post;
$pattern ="/<a(.*?)href=('|\")(.*?).(bmp|gif|jpeg|jpg|png)('|\")(.*?)>/i";
$replacement = '<a$1href=$2$3.$4$5 data-lity title="'.$post->post_title.'"$6>';
$content = preg_replace($pattern, $replacement, $content);
return $content;
}PreviousThay đổi thuộc tính mặc định của bài viết src, alt, srcset, sizes, lazysizes (ok)NextAdvanced Editor full (ok)
Last updated
