Để thay đổi màu sắc mặc định có sẵn trong trình soạn thảo WYSIWYG của WordPress, chỉ cần thêm đoạn mã sau vào tệp functions.php:
// change buttons in WYSWIG post editor, edit color palette function change_mce_options( $init ) { $init['theme_advanced_text_colors'] = 'd21268,146c52,82b600,00949b,010080,001c4b'; $init['theme_advanced_more_colors'] = true; return $init; } add_filter('tiny_mce_before_init', 'change_mce_options');