我在SO上看到了这个问题,但所有答案都没有具体说明如何改变它。
我的意思是:答案说"加上这个"但他们没有告诉我在哪里,哪个文件和一个人必须成为一名火箭科学家来解决这个问题。
有人可以解释就像我五岁,好吧,让它成为3 ...我必须做的所有步骤摆脱臭名昭着的Libre Franklin字体并将Helvetica作为TinyMCE编辑器的默认设置对于wordpress?
由于
答案 0 :(得分:3)
此post提供了非常明确的说明。
1)添加一个新的css文件,可以随意调用它,例如tinymce_custom_editor.css
,将其上传到文件夹" css"在你的主题 - > wp-content/themes/YOUR-THEME/css/
2)在主题function.php
文件中添加新功能:
使用以下代码↓创建文件tinymce_custom_editor.css
,然后将其添加到文件夹wp-content/themes/grandblog/css
body#tinymce.wp-editor {
font-family: Arial, Helvetica, sans-serif !important;
}
在tinymce_custom_editor.css
↓
wp-content/themes/YOUR-THEME/functions.php
function my_theme_add_editor_styles() {
add_editor_style( 'css/tinymce_custom_editor.css' );
}
add_action( 'after_setup_theme', 'my_theme_add_editor_styles' );