WordPress网站如何自动添加alt标签?

作为站长,都会习惯性的给图片添加alt标签,如果能自动为图片添加alt标签,会为站长省很多事情,那么WordP…

作为站长,都会习惯性的给图片添加alt标签,如果能自动为图片添加alt标签,会为站长省很多事情,那么WordPress网站如何自动添加alt标签?

wordpress 默认上传图片后图片名即为 alt,像我这种习惯把图片命名成 1234 的亚历山大,于是就批量转换下 alt 标签吧。我采用的是文章标题加站点名称的方式,虽然如果一片文章内图片较多的话不太标准,但是我大部分文章都是 1 张配图,于是用这个没什么压力。图片优化也是 wordpress SEO 的一种重要手段,不需要额外做什么,只需要复制粘贴下就可以达到效果。

WordPress网站如何自动添加alt标签? (https://www.yunsxr.com/) WordPress基础教程 第1张

下面的代码直接加到 functions.php 中即可

/** Auto-Generate ALT tag for images */

function image_alt_tag($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’).’”‘, $images[0][$index]);

$content = str_replace($images[0][$index], $new_img, $content);}}

return $content;

}

add_filter(‘the_content’, ‘image_alt_tag’, 99999);

以上就是小编分享的WordPress网站自动添加alt标签方法,希望能够帮助到大家。

类别:WordPress技巧

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT