Warning: This function has been deprecated. Use current_user_can() instead.
user_can_create_draft( int $user_id, int $blog_id = 1, int $category_id = 'None' )
Whether user can create a post.
Description Description
See also See also
Parameters Parameters
- $user_id
-
(int) (Required)
- $blog_id
-
(int) (Optional) Not Used
Default value: 1
- $category_id
-
(int) (Optional) Not Used
Default value: 'None'
Return Return
(bool)
Source 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); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
2.0.0 | Use current_user_can() |
1.5.0 | Introduced. |