WordPress网站上传的图片默认是没有alt和title信息的,为了SEO我们尽可能还是要给图片添加上,虽然说在上传图片的时候可以手动设置alt和title信息内容,但是有些麻烦,而且以往的图片再重新设置的话工作量巨大,下面给大家分享一个functions.php内添加代码的方式实现网站图片自动将标题添加到alt和title,具体代码如下:
//为文章图片自动添加title和alt信息
function image_alt_title($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', 'image_alt_title', 99999);
将上述代码复制到主题文件编辑器functions.php文件中即可,所有文章内的所有图片都会自动添加alt和title
1V1答疑支持
爱发电:点击前往