WordPress 给所有图片自动添加alt和title标签

Gavin Wu 2022年04月14日 8:04 Wordpress 1,164 Views

WordPress 给所有图片自动添加alt和title标签|微言心语众所周知如果网页中的图片没有alttitle标签对seo是不友好的,在wordpress可以通过几行代码使用文章自动添加alt和title标签

1
2
3
4
5
6
7
8
9
10
/** 图片自动添加ALT和TITLE */
function image_alt_title($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_title', 99999);

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

Top