2024年10月11日 建站教程
wordpress后台文章编辑器的按钮达不到用户需求,如何实现自定义,新增按钮?下面web建站小编给大家简单介绍一下实现方法!
//添加HTML编辑器自定义快捷标签按钮 add_action('after_wp_tiny_mce', 'add_button_mce'); function add_button_mce($mce_settings) {?> <script type="text/javascript"> QTags.addButton( 'p', 'p', "<p>", "</p>" ); QTags.addButton( 'hr', 'hr', "<hr />", "" ); QTags.addButton( 'h1', 'h1', "<h1>", "</h1>" ); QTags.addButton( 'h2', 'h2', "<h2>", "</h2>" ); QTags.addButton( 'h3', 'h3', "<h3>", "</h3>" ); </script> <?php}
本文链接:http://so.lmcjl.com/news/15119/