php WordPress编辑器中的自定义颜色

Posted

tags:

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

/**
 * Add custom colors to WordPress editor
 * @link https://urosevic.net/wordpress/tips/custom-colours-tinymce-4-wordpress-39/
 */
function base_mce4_options( $init ) {
	$default_colours = '
	"000000", "Black",
	"FFFFFF", "White"
	';
	$custom_colours = '
	"1283AC", "Theme blue",
	"858585", "Theme gray"
	';
	$init['textcolor_map'] = '[' . $default_colours . ',' . $custom_colours . ']';
	$init['textcolor_rows'] = 3;
	return $init;
}

add_filter( 'tiny_mce_before_init', 'base_mce4_options' );

以上是关于php WordPress编辑器中的自定义颜色的主要内容,如果未能解决你的问题,请参考以下文章

PHP Wordpress中的自定义字段

PHP wordpress中的自定义菜单

PHP WordPress中的自定义小部件

php WordPress中的自定义TinyMCE格式

PHP WordPress插件中的自定义页面模板

PHP Wordpress:从Wordpress数据库中的自定义表中检索值