WordPress有时在发表评论或留言时,需要贴上一张图片作为补充,如果有一个快捷的插入图片按钮是不是会很方便。
虽然可以通过安装编辑器插件,实现这一功能,但会影响页面加载速度。下面利用willin提供的代码,把这一功能加到你的热点新闻2.4版主题中。
编辑修改主题请使用专门的文体编辑软件如:Notepad++,切记不能用系统自带的记事本编辑主题模版。
首先打开functions.php在:
//全部设置结束?>
上面添加字符转换函数:(注:如果这句后面还有内容,请删除,那是你在试用其它主题时自动写入的无用代码)
//评论贴图function embed_images($content) {$content = preg_replace('/ *(.*?)([/img)?]/e', '"<img src="$1" alt="" . basename("$1") . "" />"', $content);return$content;}add_filter('comment_text', 'embed_images');
再打开评论模板:comments.php找到:
<!--<p><small><strong>XHTML:</strong> You can use these tags: <code><?php echo allowed_tags(); ?></code></small></p>-->
在其中上面添加按钮:
<a style="float:right;background: url(./wp-content/themes/HotNewspro24/images/login.png) no-repeat 0 -75px;padding:0 4px 0 20px" href='javascript:embedImage();' >插入图片</a>
如果你的程序安装在二级目录,请将上面小图片地址改成:/wp-content/themes/HotNewspro24/images/login.png 去掉前面的小点。
最后打开custom.js在最后,添加输入图片链接弹窗JS:
// 评论贴图function embedImage() {var URL = prompt('请输入图片 URL 地址:', 'http://');if (URL) {document.getElementById('comment').value = document.getElementById('comment').value + ' ' + URL + '';}}