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