user_can_richedit
Whether the user can access the visual editor.
Description
user_can_richedit();
Checks if the user can access the visual editor and that it's supported by the user's browser.
Usage
if ( !function_exists( 'user_can_richedit' ) ) { require_once ABSPATH . WPINC . '/general-template.php'; } // NOTICE! Understand what this does before running. $result = user_can_richedit();
Defined (1)
The function is defined in the following location(s).
- /wp-includes/general-template.php
- function user_can_richedit() {
- global $wp_rich_edit, $is_gecko, $is_opera, $is_safari, $is_chrome, $is_IE, $is_edge;
- if ( !isset($wp_rich_edit) ) {
- $wp_rich_edit = false;
- if ( get_user_option( 'rich_editing' ) == 'true' || ! is_user_logged_in() ) { // default to 'true' for logged out users
- if ( $is_safari ) {
- $wp_rich_edit = ! wp_is_mobile() || ( preg_match( '!AppleWebKit/(\d+)!', $_SERVER['HTTP_USER_AGENT'], $match ) && intval( $match[1] ) >= 534 );
- } elseif ( $is_gecko || $is_chrome || $is_IE || $is_edge || ( $is_opera && !wp_is_mobile() ) ) {
- $wp_rich_edit = true;
- }
- }
- }
- /**
- * Filters whether the user can access the visual editor.
- *
- * @since 2.1.0
- *
- * @param bool $wp_rich_edit Whether the user can access the visual editor.
- */
- return apply_filters( 'user_can_richedit', $wp_rich_edit );
- }