WordPress文本编辑器添加自定义快捷标签按钮,将以下代码添加到你的WordPress主题的functions文件里:
-
- 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
- }?
温馨提示:本文最后更新于2019年3月19日,已超过 2 年没有更新,如果文章内容或图片资源失效,请留言反馈,模板下载吧会及时处理,谢谢!