wp/wordpress给文章图片自动添加alt和title信息
七娃博客928人阅读
functions.php里面添加:
add_filter('the_content', 'imagesalt'); function imagesalt($content) { global $post; $pattern ="/<a(.*?)href=('|\")(.*?).(bmp|gif|jpeg|jpg|png)('|\")(.*?)>/i"; $replacement = '<a$1href=$2$3.$4$5 alt="'.$post->post_title.'" title="'.$post->post_title.'"$6>'; $content = preg_replace($pattern, $replacement, $content); return $content; }
评论 | 0 条评论
登录之后才可留言,前往登录