WordPress评论中插入图片

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评论模板样式文件中,添加一个按钮或链接:

  1. <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 + '';
	}
};

这样你就可以实现在评论中贴图了。


发布日期:

所属分类: Wordpress 综合 标签:   


没有相关文章!