WordPress 图片自动添加alt和title

主题目录functions.php文件中添加以下代码:

默认显示文章标题和网站标题

// /** <a target="_blank" href="https://www.xiaohulizyw.cn" title="图片自动添加alt和title">图片自动添加alt和title</a> */
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().'-'.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', 'image_alt_title', 99999);

保存文件后,刷新看下吧

给TA打赏
共{{data.count}}人
人已打赏
教程

【7B2主题美化】加个好看的底部导航

2024-4-16 13:50:43

教程

WordPress网站7B2主题用户头像旋转特效美化

2024-4-16 14:17:11

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