wordpress文章标题自动链接图片alt和title标签属性

今天老白博客@老白在网上冲浪的时候发现,WordPress网站的图片alt和title标签属性也有利于seo排名优化,这不赶紧盘起来!操作简单,免代码即可实现wordpress文章标题自动链接图片alt和title标签属性,往往我们很多人在编辑文章的时候,都不注重文章标签的填写或者是懒得写,那这样就导致文章内图片缺少ALT 标签!

wordpress文章标题自动链接图片alt和title标签属性插图

以下是从技术宅那里找到的方法,有两种(原文:https://jszbug.com/18081)

标题+站点名

function img_alt($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', 'img_alt', 99999);

标题链接图片alt和title标签属性

//图片alt//
function img_alt($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().'" title="'.get_the_title().'"', $images[0][$index]);
$content = str_replace($images[0][$index], $new_img, $content);
}
}
return $content;
}
add_filter('the_content', 'img_alt', 99999);
//图片alt//

将以上代码选择其一复制到主题的
functions.php中即可

温馨提示:
1.本站大部分内容均收集于网络!若内容若侵犯到您的权益,请发送邮件至:duhaomu@163.com,我们将第一时间处理!
2.资源所需价格并非资源售卖价格,是收集、整理、编辑详情以及本站运营的适当补贴,并且本站不提供任何免费技术支持。
3.所有资源仅限于参考和学习,版权归原作者所有,更多请阅读网站声明

给TA赞赏
共{{data.count}}人
人已赞赏
未整理

手机摄影教程视频,手机摄影高逼格照片

2021-3-22 0:00:00

未整理

中华风

2021-3-23 0:00:00

0 条回复 A文章作者 M管理员
----《》
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索