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

user_can_create_draft() WordPress Function

The user_can_create_draft() function allows a user to create a draft post in Wordpress. This function is useful for users who want to create a post, but are not ready to publish it yet.

user_can_create_draft( int $user_id, int $blog_id = 1, int $category_id = 'None' ) #

Whether user can create a post.


Description

Top ↑

See also


Top ↑

Parameters

$user_id

(int)(Required)

$blog_id

(int)(Optional)Not Used

Default value: 1

$category_id

(int)(Optional)Not Used

Default value: 'None'


Top ↑

Return

(bool)


Top ↑

Source

File: wp-includes/deprecated.php

function user_can_create_draft($user_id, $blog_id = 1, $category_id = 'None') {
	_deprecated_function( __FUNCTION__, '2.0.0', 'current_user_can()' );

	$author_data = get_userdata($user_id);
	return ($author_data->user_level >= 1);
}


Top ↑

Changelog

Changelog
VersionDescription
2.0.0Use current_user_can()
1.5.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More