函数原型
get_editable_user_ids( int $user_id, bool $exclude_zeros = true, $post_type = ‘post’ ): array
函数描述
Gets the IDs of any users who can edit posts.
是否弃用
Warning: This function has been deprecated. Use get_users() instead.
函数参数
-
$user_id
int
Required - User ID.
-
$exclude_zeros
bool
Optional - Whether to exclude zeroes.
Default:
true
函数返回值
array Array of editable user IDs, empty array otherwise.
函数位置
File: wp-admin/includes/deprecated.php.
函数源码
function get_editable_user_ids( $user_id, $exclude_zeros = true, $post_type = 'post' ) {
_deprecated_function( __FUNCTION__, '3.1.0', 'get_users()' );
global $wpdb;
if ( ! $user = get_userdata( $user_id ) )
return array();
$post_type_obj = get_post_type_object($post_type);
if ( ! $user->has_cap($post_type_obj->cap->edit_others_posts) ) {
if ( $user->has_cap($post_type_obj->cap->edit_posts) || ! $exclude_zeros )
return array($user->ID);
else
return array();
}
if ( !is_multisite() )
$level_key = $wpdb->get_blog_prefix() . 'user_level';
else
$level_key = $wpdb->get_blog_prefix() . 'capabilities'; // WPMU site admins don't have user_levels.
$query = $wpdb->prepare("SELECT user_id FROM $wpdb->usermeta WHERE meta_key = %s", $level_key);
if ( $exclude_zeros )
$query .= " AND meta_value != '0'";
return $wpdb->get_col( $query );
}
源码链接
变更日志
| Version | Description |
|---|---|
| 3.1.0 | Introduced. |

