WordPress SEO 优化自动给图片添加 Alt 和 Title 属性 WP 主题优化增强 function 文件实用功能代码段

ximagine
ximagine
管理
2014
文章
0
粉丝
教程 说明书评论291字数 234阅读0分46秒阅读模式
宝藏摘要WordPress 要想让图片更符合 SEO 排名就需要给每一张图片添加 Alt 和 Title 属性,对于网站的收录及流量都会有提升,图片多的时候每次都要手动添加会特别麻烦,荒岛...
荒岛广告位招商进行中...
WordPress SEO 优化自动给图片添加 Alt 和 Title 属性 WP 主题优化增强 function 文件实用功能代码段
日期:2023年8月15日 分类:教程  说明书 评论:发表评论 浏览:29

WordPress 要想让图片更符合 SEO 排名就需要给每一张图片添加 Alt 和 Title 属性,对于网站的收录及流量都会有提升,图片多的时候每次都要手动添加会特别麻烦,荒岛本次带来 WordPress SEO 优化自动给图片添加 Alt 和 Title 属性的教程,只要将下面的代码添加到主题的「functions.php」文件即可。

// 荒岛一座藏有宝藏的小岛
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宝藏内容来自荒岛-https://x-imagine.com/wordpress-automatically-add-alt-and-title-attributes-to-images.html

请按 Ctrl+D 收藏荒岛分享给好友 如您发现本文件已经失效无法下载请联系站长修正

荒岛公众号
扫一扫关注
weinxin
HDsoft27
公众号ID已复制,前往微信关注...
荒岛小程序
扫一扫关注
weinxin
ximagine
哔哩姬ID已复制,前往B站关注...
荒岛广告位招商进行中...
 最后更新:2023-8-16
荒岛广告位招商进行中...

发表评论