本文实例讲述了wordpress给文章图片自动添加链接的方法。分享给大家供大家参考。具体分析如下:
我们会看到有很多的网站我们点击图片就会进入当前文件连接了,下面我来给使用wordpress博客的同学也来介绍此种方法,图片自动链接到文章,添加标题和ALT属性.
直接将下面的代码添加到主题的 functions.PHP 文件即可:
PHPcode3">function auto_post_link($content) { global $post; $content = preg_replace('/]*?srcs*=s*('|")(.*?)\1[^>]*?/?s*>/i',"post_title."" >post_title."" />",$content); return $content; } add_filter ('the_content','auto_post_link',0);