3个设置WordPress内容自动图片添加ALT和TITLE属性的脚本

从SEO角度考虑,我们的每篇文章中的图片需要加上ALT和TITLE属性。不过,有些时候我们编辑文章的时候忘记添加属性,那我们有没有办法可以批量自动添加呢?在这篇文章中,我们可以通过可选的办法来通过自动给没有设置ALT和TITLE属性的图片自动添加这篇文章的标题作为2个属性。1、方法1function image_alt...

从SEO角度考虑,我们的每篇文章中的图片需要加上ALT和TITLE属性。不过,有些时候我们编辑文章的时候忘记添加属性,那我们有没有办法可以批量自动添加呢?在这篇文章中,我们可以通过可选的办法来通过自动给没有设置ALT和TITLE属性的图片自动添加这篇文章的标题作为2个属性。

1、方法1

function image_alttitle( $imgalttitle ){global $post;$category = get_the_category();$flname=$category[0]->cat_name;$btitle = get_bloginfo();$imgtitle = $post->post_title;$imgUrl = "<imgs[^>]*src=("??)([^" >]*?)\1[^>]*>";if(preg_match_all("/$imgUrl/siU",$imgalttitle,$matches,PREG_SET_ORDER)){if( !empty($matches) ){for ($i=0; $i < count($matches); $i++){$tag = $url = $matches[$i][0];$j=$i+1;$judge = '/title=/';preg_match($judge,$tag,$match,PREG_OFFSET_CAPTURE);if( count($match) < 1 )$altURL = ' alt="'.$imgtitle.' '.$flname.' 第'.$j.'张" title="'.$imgtitle.' '.$flname.' 第'.$j.'张-'.$btitle.'" ';$url = rtrim($url,'>');$url .= $altURL.'>';$imgalttitle = str_replace($tag,$url,$imgalttitle);}}}return $imgalttitle;}add_filter( 'the_content','image_alttitle');

2、方法2

function image_alttitle( $imgalttitle ){global $post;$category = get_the_category();$flname=$category[0]->cat_name;$btitle = get_bloginfo();$imgtitle = $post->post_title;$imgUrl = "<imgs[^>]*src=("??)([^" >]*?)\1[^>]*>";if(preg_match_all("/$imgUrl/siU",$imgalttitle,$matches,PREG_SET_ORDER)){if( !empty($matches) ){for ($i=0; $i < count($matches); $i++){$tag = $url = $matches[$i][0];$j=$i+1;$judge = '/title=/';preg_match($judge,$tag,$match,PREG_OFFSET_CAPTURE);if( count($match) < 1 )$altURL = ' alt="'.$imgtitle.' '.$flname.' 第'.$j.'张" title="'.$imgtitle.' '.$flname.' 第'.$j.'张-'.$btitle.'" ';$url = rtrim($url,'>');$url .= $altURL.'>';$imgalttitle = str_replace($tag,$url,$imgalttitle);}}}return $imgalttitle;}add_filter( 'the_content','image_alttitle');

3、方法3

function wpface_image_alt_title($content) {  global $post;  $alt_title = $post->post_title;  preg_match_all('/<img(.*?)src=('|")(.*?).(bmp|gif|jpeg|jpg|png)('|")(.*?)>/i', $content, $matches);  if($matches) {    foreach($matches[0] as $val) {      $place_content = $val;      //先把空白 alt 和 title 属性清理掉      $place_content = str_replace(' alt ', ' ', $place_content);      $place_content = str_replace(' ', '', $place_content);      $place_content = str_replace(' title ', ' ', $place_content);      $place_content = str_replace(' title=""', '', $place_content);      //如果想覆盖原来的 alt 或 title 属性,就把下面两句的注释取消      //$place_content = preg_replace('/ alt="(.*?)"/', '', $place_content);      //$place_content = preg_replace('/ title="(.*?)"/', '', $place_content);      //判断如果没有 alt 或 title 属性就用文章标题添加      if(strpos($place_content,'alt=')===false) {        $place_content = str_replace("/>", "", $place_content).' alt="'.$alt_title.'"/>';      }      if(strpos($place_content,'title=')===false) {        $place_content = str_replace("/>", "", $place_content).' title="'.$alt_title.'"/>';      }      //替换 img 标签      $content = str_replace($val, $place_content, $content);    }  }  return $content;}add_filter('the_content','wpface_image_alt_title');

以上方法我们选择一个即可。

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

给TA打赏
共{{data.count}}人
人已打赏
wordpress教程

WordPress解决文章id不连续的办法

2022-12-31 23:46:06

wordpress教程

WordPress 6.0.1 简体中文版导致摘要截取失效的解决办法

2023-1-1 7:35:49

!
你也想出现在这里?立即 联系我们吧!
信息
0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
搜索