51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

WordPress 评论中嵌入图片

发表评论需要添加图片,而WordPress本身并不具备评论贴图功能,

将下面的代码添加到当前主题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="评论" style="width:'.$size.'; height:'.$size.'" />', $comment);

return $comment;

}
赞(0)
未经允许不得转载:工具盒子 » WordPress 评论中嵌入图片