WordPress Version: 4.6
/**
* Retrieves a list of archives.
*
* @since 0.71
* @deprecated 2.1.0 Use wp_get_archives()
* @see wp_get_archives()
*
* @param string $type
* @param string $limit
* @param string $format
* @param string $before
* @param string $after
* @param bool $show_post_count
* @return string|null
*/
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);
}