_get_admin_bar_pref

函数
_get_admin_bar_pref ( $context = 'front', $user = 0 )
Access
Private
参数
  • (string) $context Context of this preference check. Defaults to 'front'. The 'admin' preference is no longer used.
    Required:
    Default: 'front'
  • (int) $user Optional. ID of the user to check, defaults to 0 for current user.
    Required:
返回值
  • (bool) Whether the admin bar should be showing for this user.
定义位置
相关方法
get_admin_page_parentget_admin_urlwp_admin_bar_renderwp_admin_bar_wp_menu_wp_admin_bar_init
引入
3.1.0
弃用
-

_get_admin_bar_pref: 这是一个用来获取用户对WordPress管理栏可见性的偏好的函数。它接收一个用户ID作为参数,并返回用户的偏好。

检索用户的管理栏显示偏好。

function _get_admin_bar_pref( $context = 'front', $user = 0 ) {
	$pref = get_user_option( "show_admin_bar_{$context}", $user );
	if ( false === $pref ) {
		return true;
	}

	return 'true' === $pref;
}

常见问题

FAQs
查看更多 >