是否要将html编辑器设置为wordpress博客/站点的默认帖子编辑器?将以下代码添加到当前激活的主题的functions.php文件中。
function fwm_default_wordpress_editor() {
return "html";
}
add_filter( 'wp_default_editor', 'fwm_default_wordpress_editor' );
注意:这将删除wordpress中的visual editor模式,并使html editor成为所有用户的默认帖子编辑器。