wordpress如何实现img图片自动添加alt和title

2024年05月29日 建站教程

wordpress建站如何实现在全站的img图片标签上自动添加alt属性和title属性!下面web建站小编给大家简单介绍一下具体实现代码!

找到当前主题函数模板functions.php中新增以下代码:

function image_alt_tag($content){
  global $post;preg_match_all('/<img (.*?)/>/', $content, $images);
  if(!is_null($images)) {foreach($images[1] as $index => $value)
  {$new_img = str_replace('<img', '<img alt="'.get_the_title().'-'.get_bloginfo('name').'" title="'.get_the_title().'-'.get_bloginfo('name').'"', $images[0][$index]);
  $content = str_replace($images[0][$index], $new_img, $content);}}
  return $content;
}
add_filter('the_content', 'image_alt_tag', 99999);

本文链接:http://so.lmcjl.com/news/5563/

展开阅读全文
相关内容