wordpress 设置编辑器默认模式
程序员文章站
2022-05-26 19:11:02
...
wordpress现在有两种编辑器模式,可视化模式和文本模式,可以通过下面的方式进行设置默认模式:
// 设置文本编辑为默认,可视化是tinymce
add_filter( 'wp_default_editor', create_function( '', 'return "html";' ) );
加到主题的functions.php里