WordPress从TinyMCE编辑器中删除按钮
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WordPress从TinyMCE编辑器中删除按钮相关的知识,希望对你有一定的参考价值。
Thanks to Tom McFarlin for this: https://gist.github.com/tommcfarlin/86e4f040bcc641a86f59
<?php add_filter( 'mce_buttons_2', 'acme_remove_from_kitchen_sink'); /** * Removes the all but the formatting button from the post editor. * * @since 1.0.0 * * @param array $buttons The current array buttons including the kitchen sink. * @return array The updated array of buttons that exludes the kitchen sink. */ function acme_remove_from_kitchen_sink( $buttons ) { 'underline', 'justifyfull', 'forecolor', '|', 'pastetext', 'pasteword', 'removeformat', 'charmap', 'outdent', 'indent', 'undo', 'redo', 'wp_help' ); foreach ( $buttons as $button_key => $button_value ) { } } return $buttons; }
以上是关于WordPress从TinyMCE编辑器中删除按钮的主要内容,如果未能解决你的问题,请参考以下文章
黄聪:wordpress如何扩展TinyMCE编辑器,添加自定义按钮及功能