wordpress网站评论框支持上传图片功能
对于学员做出的网站,一般要求在网站的文章底部加一个评论框功能,通过制作wordpress评论功能模板(comment.php),可以实现文字评论框,美中不足,却不能上传图片。
如何在评论框上添加上传图片功能选项呢?方法如下:
1、在 functions.php 中加入以下代码
/*
*评论中插入图片
*/
add_action('comment_text', 'comments_embed_img', 2);
function comments_embed_img($comment) {
$size = auto;
$comment = preg_replace(array('#(http://([^\s]*)\.(jpg|gif|png|JPG|GIF|PNG))#','#(https://([^\s]*)\.(jpg|gif|png|JPG|GIF|PNG))#'),'<img src="$1" alt="" width="'.$size.'" height="" />', $comment);
return $comment;
}
这样的话,你只要在评论中插入图片地址,就能显示图片了。
2、添加贴图按钮链接
在你的 comments.php 评论模板样式文件中,添加一个按钮或链接:
<a href="javascript:embedImage();" title="插入图片" alt="插入图片">插入图片</a>
3、引入以下 js
在你主题的 Js 文件中引入以下代码:
// 评论贴图
function embedImage() {
var URL = prompt('请输入图片 URL 地址:', 'http://');
if (URL) {
document.getElementById('comment').value = document.getElementById('comment').value + '' + URL + '';
}
};
这样你就可以实现在评论中贴图了。
感谢分享