WordPress图片怎么自动添加alt和title属性

追格官方小助手/ 2022年02月27日/ WordPress/ 浏览 1249

WordPress图片怎么自动添加alt和title属性,将下面代码添加到当前WordPress模板函数functions.php中即可。


/** WordPress图片自动添加alt和title属性*/
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);


发表评论

暂无评论,抢个沙发...

客服 工单