On this page
user_can_create_post( int $user_id, int $blog_id = 1, int $category_id = 'None' ): bool
This function has been deprecated. Use current_user_can() instead.
Whether user can create a post.
Description
See also
Parameters
$user_idint Required$blog_idint Optional-
Not Used
Default:
1 $category_idint Optional-
Not Used
Default:
'None'
Return
bool
Source
File: wp-includes/deprecated.php. View all references
function user_can_create_post($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);
}
Related
Uses
| Uses | Description |
|---|---|
| get_userdata() wp-includes/pluggable.php | Retrieves user info by user ID. |
| _deprecated_function() wp-includes/functions.php | Marks a function as deprecated and inform when it has been used. |
Used By
| Used By | Description |
|---|---|
| user_can_set_post_date() wp-includes/deprecated.php | Whether user can set new posts’ dates. |
Changelog
| Version | Description |
|---|---|
| 2.0.0 | Use current_user_can() |
| 1.5.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/user_can_create_post