wordpress输入带格式的代码时,每次都需要手动输入pre标签很不方便。如何能够像编辑器带的b标签一样,点一下就自动输入。
wordpress增加自定义标签办法:
修改主题的functions.php文件,然后将以下代码添加<?php 之后:
//添加HTML编辑器自定义快捷标签按钮 add_action('after_wp_tiny_mce', 'add_button_mce'); function add_button_mce($mce_settings) { ?> <script type="text/javascript"> QTags.addButton( 'hr', 'hr', "\n<hr />\n", "" ); QTags.addButton( 'h1', 'h1', "\n<h1>", "</h1>\n" ); QTags.addButton( 'h2', 'h2', "\n<h2>", "</h2>\n" ); QTags.addButton( 'h3', 'h3', "\n<h3>", "</h3>\n" ); QTags.addButton( 'pre', 'pre', "\n<pre>\n", "\n</pre>\n" ); </script> <?php }
addButton的四个参数:分别表示按钮的ID、按钮显示名、点一下输入内容、再点一下关闭内容(空则一次输入全部内容),\n表示换行
可以使用 QTags.addButton( ”, ”, ”, ” )增加多个按钮!