Warning: This function has been deprecated. Use current_user_can() instead.
user_can_edit_post_date() WordPress Function
The user_can_edit_post_date() function allows a user to edit the post date for a post. This function is useful for allowing users to change the date of a post to reflect when the post was actually written.
user_can_edit_post_date( int $user_id, int $post_id, int $blog_id = 1 ) #
Whether user can delete a post.
Description
See also
Parameters
- $user_id
(int)(Required)
- $post_id
(int)(Required)
- $blog_id
(int)(Optional)Not Used
Default value: 1
Return
(bool) returns true if $user_id can edit $post_id's date
Source
File: wp-includes/deprecated.php
function user_can_edit_post_date($user_id, $post_id, $blog_id = 1) { _deprecated_function( __FUNCTION__, '2.0.0', 'current_user_can()' ); $author_data = get_userdata($user_id); return (($author_data->user_level > 4) && user_can_edit_post($user_id, $post_id, $blog_id)); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
2.0.0 | Use current_user_can() |
1.5.0 | Introduced. |