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

user_can_delete_post() WordPress Function

The user_can_delete_post() function is used to check if the current user has permission to delete the specified post. This function returns true if the user has permission to delete the post, and false if they do not have permission.

user_can_delete_post( int $user_id, int $post_id, int $blog_id = 1 ) #

Whether user can delete a post.


Description

Top ↑

See also


Top ↑

Parameters

$user_id

(int)(Required)

$post_id

(int)(Required)

$blog_id

(int)(Optional)Not Used

Default value: 1


Top ↑

Return

(bool)


Top ↑

Source

File: wp-includes/deprecated.php

function user_can_delete_post($user_id, $post_id, $blog_id = 1) {
	_deprecated_function( __FUNCTION__, '2.0.0', 'current_user_can()' );

	// Right now if one can edit, one can delete.
	return user_can_edit_post($user_id, $post_id, $blog_id);
}


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