Warning: This function has been deprecated. Use get_users() instead.

get_editable_authors( int $user_id ): array|false

Gets author users who can edit posts.


Parameters

$user_id int Required
User ID.

Top ↑

Return

array|false List of editable authors. False if no editable users.


Top ↑

Source

File: wp-admin/includes/deprecated.php. View all references

function get_editable_authors( $user_id ) {
	_deprecated_function( __FUNCTION__, '3.1.0', 'get_users()' );

	global $wpdb;

	$editable = get_editable_user_ids( $user_id );

	if ( !$editable ) {
		return false;
	} else {
		$editable = join(',', $editable);
		$authors = $wpdb->get_results( "SELECT * FROM $wpdb->users WHERE ID IN ($editable) ORDER BY display_name" );
	}

	return apply_filters('get_editable_authors', $authors);
}


Top ↑

Changelog

Changelog
Version Description
3.1.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.