function get_archives($type='',
$limit='',
$format='html',
$before = '',
$after = '',
$show_post_count = false
) { _deprecated_function( __FUNCTION__, '2.1.0', 'wp_get_archives()'
);
$args =
compact('type', 'limit', 'format', 'before', 'after', 'show_post_count'
);
return wp_get_archives($args);
}/**
* Returns or Prints link to the author's posts.
*
* @since 1.2.0
* @deprecated 2.1.0 Use get_author_posts_url()
* @see get_author_posts_url()
*
* @param bool $display
* @param int $author_id
* @param string $author_nicename Optional.
* @return string|null
*/