Warning: This function has been deprecated. Use get_users() instead.
get_nonauthor_user_ids() WordPress Function
The get_nonauthor_user_ids() function in WordPress returns an array of user IDs for all users who are not authors. This can be useful for running a query or doing some other action on non-author users.
get_nonauthor_user_ids() #
Gets all users who are not authors.
Source
File: wp-admin/includes/deprecated.php
function get_nonauthor_user_ids() { _deprecated_function( __FUNCTION__, '3.1.0', 'get_users()' ); global $wpdb; 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. return $wpdb->get_col( $wpdb->prepare("SELECT user_id FROM $wpdb->usermeta WHERE meta_key = %s AND meta_value = '0'", $level_key) ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
3.1.0 | Introduced. |