WordPress文本编辑器添加自定义快捷标签按钮

WordPress文本编辑器添加自定义快捷标签按钮

将以下代码添加到你的WordPress主题的functions文件里:

//添加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
}?

希望陈沩亮博客( https://www.chenweiliang.com/ ) 分享的《WordPress文本编辑器添加自定义快捷标签按钮》,对您有帮助。

欢迎分享本文链接:https://www.chenweiliang.com/cwl-469.html

解锁 AI 助力,告别低效工作!🔓💼

🌟 立刻在频道置顶目录中,抢先体验这些神奇的AI神兵利器!🌟

喜欢就分享和按赞!您的分享和按赞,是我们持续的动力!

 

发表评论

您的邮箱地址不会被公开。 必填项已用 * 标注

滚动到顶部