函数原型
get_users_drafts( int $user_id ): array
函数描述
Retrieve the user’s drafts.
是否弃用
未弃用
函数参数
-
$user_id
int
Required - User ID.
函数返回值
array
函数位置
File: wp-admin/includes/user.php.
函数源码
function get_users_drafts( $user_id ) {
global $wpdb;
$query = $wpdb->prepare( "SELECT ID, post_title FROM $wpdb->posts WHERE post_type = 'post' AND post_status = 'draft' AND post_author = %d ORDER BY post_modified DESC", $user_id );
/**
* Filters the user's drafts query string.
*
* @since 2.0.0
*
* @param string $query The user's drafts query string.
*/
$query = apply_filters( 'get_users_drafts', $query );
return $wpdb->get_results( $query );
}
源码链接
变更日志
| Version | Description |
|---|---|
| 2.0.0 | Introduced. |

