get_usernumposts()
get_usernumposts( int $userid ) 检索用户已写入的文章数。Retrieves t…
get_usernumposts( int $userid )
检索用户已写入的文章数。
Retrieves the number of posts a user has written.
目录锚点:#说明#参数#返回#源码
说明(Description)
另见函数 count_user_posts()
参数(Parameters)
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
$userid | (int) | 必需 | 用于计算帖子的用户。 |
返回(Return)
(int)给定用户已写的帖子数。
源码(Source)
/** * Number of posts user has written. * * @since 0.71 * @deprecated 3.0.0 * @deprecated Use count_user_posts() * @see count_user_posts() */ function get_usernumposts( $userid ) { _deprecated_function( __FUNCTION__, '3.0', 'count_user_posts()' ); return count_user_posts( $userid ); }
更新版本 | 源码位置 | 使用 | 被使用 |
---|---|---|---|
3.0.0 | wp-includes/deprecated.php:2430 | 0 | 2 |
类别:WordPress 函数手册、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!