下面由wordpress建站教程栏目给大家介绍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))#'),'@@##@@', $comment); return $comment; }登录后复制
添加上述代码后,在发表评论时直接粘贴图片链接地址即可。
具体效果可以在本文留言并贴图。