user_can_richedit

函数
user_can_richedit ( No parameters )
返回值
  • (bool) True if the user can access the visual editor, false otherwise.
定义位置
相关方法
user_can_edit_postuser_can_edit_useruser_can_create_postuser_can_edit_post_dateuser_can
引入
2.0.0
弃用
-

user_can_richedit: 这个钩子用来确定一个用户是否可以使用WordPress的可视化编辑器。

确定用户是否可以访问可视化编辑器。

检查用户是否可以访问视觉编辑器,以及用户的浏览器是否支持该功能。

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 ( 'true' === get_user_option( 'rich_editing' ) || ! 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 ) && (int) $match[1] >= 534 );
			} elseif ( $is_IE ) {
				$wp_rich_edit = ( strpos( $_SERVER['HTTP_USER_AGENT'], 'Trident/7.0;' ) !== false );
			} elseif ( $is_gecko || $is_chrome || $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 );
}

常见问题

FAQs
查看更多 >