<div class="accordion-head">
<h4>ARCHIVES<span><i class="fa fa-angle-down"></i></span></h4>
</div>
<div class="accordion-body">
<ul>
<?php
$args = array(
'type' => 'monthly',
'limit' => '',
'format' => 'html',
'before' => '<li>',
'after' => '</li>',
'show_post_count' => false,
'echo' => 1,
'order' => 'DESC'
);
wp_get_archives( $args );
?>
</ul>
</div>