wordpress是不支持在评论中插入图片的,有时候留言评论时需要插入图片,或者我们自开发主题时,在评论时加入贴图功能,一起看下面的步骤来实现
/*
*/
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))#'),'
return $comment;
}
在你的comments.PHP评论模板样式文件中,添加一个按钮或链接:
3、引入以下js
// 评论贴图
function embedImage() {
var URL = prompt('请输入图片 URL 地址:','http://');
if (URL) {
document.getElementById('comment').value = document.getElementById('comment').value + '' + URL + '';
}
};
这样你就可以实现在评论中贴图了。
原文链接:https://www.f2er.com/wordpress/422821.html