完成后贴入图片网址,提交可以显示,但是刷新就不能显示图片了~ 而且 HTM 图片代码变成
<img data-original="
" alt="" />
怎么破?求大大们帮帮看看啊
根据以下代码
function auto_comment_image( $comment ) {// by
http://mufeng.me
$post_ID = $comment["comment_post_ID"];
if($post_ID == 972){ //此处为页面 id
global $allowedtags;
$content = $comment["comment_content"];
// alt 部分自行填写
$content = preg_replace('/( http:\/\/|https:\/\/){1}.+?\.(jpg|gif|bmp|bnp|png)$/is','<img src="http://mufeng.me/$0" alt="" />',$content);
//允许发布 img 标签
$allowedtags['img'] = array('src' => array (), 'alt' => array ());
// 重新给$comment 赋值
$comment["comment_content"] = $content;
}
return $comment;
}
add_filter('preprocess_comment', 'auto_comment_image');