PHP WordPress从TinyMCE编辑器中删除按钮

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP WordPress从TinyMCE编辑器中删除按钮相关的知识,希望对你有一定的参考价值。

<?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 ) {

 	$invalid_buttons = array(
			'underline',
			'justifyfull',
			'forecolor',
			'|',
			'pastetext',
			'pasteword',
			'removeformat',
			'charmap',
			'outdent',
			'indent',
			'undo',
			'redo',
			'wp_help'
		);


	
	foreach ( $buttons as $button_key => $button_value ) {
    
    		if ( in_array( $button_value, $invalid_buttons ) ) {
      			unset( $buttons[ $button_key ] );
    		}
    
	}

	return $buttons;

}

以上是关于PHP WordPress从TinyMCE编辑器中删除按钮的主要内容,如果未能解决你的问题,请参考以下文章

WordPress从TinyMCE编辑器中删除按钮

php 在Wordpress帖子编辑器页面添加第二个TinyMCE编辑器。第二个编辑器看起来和功能完全像原始的编辑器一样

黄聪:wordpress如何扩展TinyMCE编辑器,添加自定义按钮及功能

小板邓:wordpress如何扩展TinyMCE编辑器,添加自定义按钮及功能

在 wordpress tinymce 编辑器中更改简码外观

WordPress TinyMCE 编辑器增强技巧大全