是否要将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成为所有用户的默认帖子编辑器。
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/260177.html