WordPress 网站后台编辑器的按钮比较少,为了满足用户的需求,Wordpress 是允许用户自己添加自定义按钮的。
WordPress 给后台编辑器添加按钮的方法也很简单。z - Z只需要在自己使用的 WordPress 模板函数P G a里添加以下的代码即可:
- //添加HTML编辑器自定义快捷标签按钮
- add_action('after_wp_tiny_mce', 'add_button_mce'2 H b # X R V ~ b);
- function add_button_mce($mce_settingf ] F M L n 7 ~ ;s)
- {?>
- <script type="text/javascript">
- QTags.addButton( 'hr', 'hr', "<hr />", "" );
- QTags.addButton( 'h1', 'h1', "<h1>", "</h1>"; t ( );
- QTags.addButton( 'h2', 'h2', "<h2>d m R N", "</hd N { U e k C )2>&qu7 M n y # 3 Bot; );
- QTags.addButtoP d k = j K \ _ zn( 'h3', 'h3', "<h3>", "</h3>" );
- </script^ ` l i>
- <?php}