这存储在rich_editing
每个用户的元密钥。
您可以选择其中一个(未经测试):
1) 为您的特定用户添加,例如通过
`add_user_meta( $user_id, \'rich_editing\', \'true\', true );`
2)在
wp_default_editor()
函数,该函数确定默认编辑器
user_can_richedit()
已应用函数。
它检查get_user_option( \'rich_editing\' ) === \'true\'
, 除其他事项外。
它可以通过user_can_richedit
过滤器:
/**
* Filters whether the user can access the rich (Visual) editor.
*
* @since 2.1.0
*
* @param bool $wp_rich_edit Whether the user can access to the rich (Visual) editor.
*/
return apply_filters( \'user_can_richedit\', $wp_rich_edit );
3)尝试过滤
get_user_option( \'rich_editing\' );
如果它不见了。