WordPress Version: 4.6
/**
* Retrieves the number of posts a user has written.
*
* @since 0.71
* @deprecated 3.0.0 Use count_user_posts()
* @see count_user_posts()
*
* @param int $userid User to count posts for.
* @return int Number of posts the given user has written.
*/
function get_usernumposts($userid)
{
_deprecated_function(__FUNCTION__, '3.0.0', 'count_user_posts()');
return count_user_posts($userid);
}