WordPress 要想让图片更符合 SEO 排名就需要给每一张图片添加 Alt 和 Title 属性,对于网站的收录及流量都会有提升,图片多的时候每次都要手动添加会特别麻烦,荒岛本次带来 WordPress SEO 优化自动给图片添加 Alt 和 Title 属性的教程,只要将下面的代码添加到主题的「functions.php」文件即可。宝藏来自荒岛 - 一座藏有宝藏的小岛-https://x-imagine.com/wordpress-automatically-add-alt-and-title-attributes-to-images.html
// 荒岛一座藏有宝藏的小岛 function image_alttitle( $imgalttitle ){ global $post; $category = get_the_category(); $btitle = get_bloginfo(); $imgtitle = $post->post_title; $imgUrl = "<img\s[^>]*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.' '.$j.'" title="'.$imgtitle.' '.$j.' - '.$btitle.'" '; $url = rtrim($url,'>'); $url .= $altURL.'>'; $imgalttitle = str_replace($tag,$url,$imgalttitle); } } } return $imgalttitle; } add_filter( 'the_content','image_alttitle');宝藏来自荒岛 - 一座藏有宝藏的小岛-https://x-imagine.com/wordpress-automatically-add-alt-and-title-attributes-to-images.html
请按 Ctrl+D 收藏荒岛分享给好友 如您发现本文件已经失效无法下载请联系站长修正
- 荒岛公众号
- 扫一扫关注
- 荒岛小程序
- 扫一扫关注
评论