学习NO.1 发表于 2015-8-23 23:59:05

Discuz 3.2 门户文章如何插入图片自动添加alt标签,利于seo收录

最近道勤小编接了一个小单子;用Discuz搭建了个网站——人才招聘网(www.jobbing360.com),用到了门户功能,不得不说Discuz的功能还是非常强大的,但在使用过程中发现在发表文章时添加了图片却不能像WordPress这样自动添加alt标签,经过一番研究,初步解决了这个问题,目前还没有Bug,等待长时间验证,方法如下:在实施本方法之前请先备份网站数据,以防不测;这次修改需要修改两个文件,分别是:static/image/editor/editor_function.js
template/default/home/spacecp_blog.htm同时增加一个文件为:static/image/editor/editor_function.js–复制一份,重命名为:bgeditor_function.js下面开始修改:editor_function.js查找代码:function insertImage(image, url, width, height) {
    url = typeof url == 'undefined' || url === null ? image : url;
    width = typeof width == 'undefined' || width === null ? 0 : parseInt(width);
    height = typeof height == 'undefined' || height === null ? 0 : parseInt(height);
    var html = '<p><a href="' + url + '" target="_blank"><img src="'+image+'"'+(width?' width="'+width+'"':'')+(height?' height="'+height+'"':'')+'></a></p>';
    edit_insert(html);
}修改为function insertImage(image, url, width, height, subject) {
    url = typeof url == 'undefined' || url === null ? image : url;
    width = typeof width == 'undefined' || width === null ? 0 : parseInt(width);
    height = typeof height == 'undefined' || height === null ? 0 : parseInt(height);
    subject = $('title').value;
    var html = '<p><a href="' + url + '" target="_blank"><img alt="'+subject+'" src="'+image+'"'+(width?' width="'+width+'"':'')+(height?' height="'+height+'"':'')+'></a></p>';
    edit_insert(html);
}再修改刚刚建立的bgeditor_function.js同样查找代码:function insertImage(image, url, width, height) {
    url = typeof url == 'undefined' || url === null ? image : url;
    width = typeof width == 'undefined' || width === null ? 0 : parseInt(width);
    height = typeof height == 'undefined' || height === null ? 0 : parseInt(height);
    var html = '<p><a href="' + url + '" target="_blank"><img src="'+image+'"'+(width?' width="'+width+'"':'')+(height?' height="'+height+'"':'')+'></a></p>';
    edit_insert(html);
}修改为:function insertImage(image, url, width, height, subject) {
    url = typeof url == 'undefined' || url === null ? image : url;
    width = typeof width == 'undefined' || width === null ? 0 : parseInt(width);
    height = typeof height == 'undefined' || height === null ? 0 : parseInt(height);
    var html = '<p><a href="' + url + '" target="_blank"><img alt="'+subject+'" src="'+image+'"'+(width?' width="'+width+'"':'')+(height?' height="'+height+'"':'')+'></a></p>';
    edit_insert(html);
}再编辑:template/default/home/spacecp_blog.htm查找:editor_function.js替换为:bgeditor_function.js编辑完毕保存,把文件上传到原来位置,增加的bgeditor_function.js与editor_function.js一块放在同一目录。后台发布一片文章,输入文章标题,上传图片,进入源代码模式,看看图片是不是有了alt标签?!
页: [1]
查看完整版本: Discuz 3.2 门户文章如何插入图片自动添加alt标签,利于seo收录