If you want to display the number of archive months in WordPress then you just need to add the below function in functions.php file of your current active theme.
After adding the below function in functions.php use the shortcode in WordPress text editor or text widget. This will display archives list with limited months which you will set in the below function.
// Function to get archives list with limited months
function wpb_limit_archives() {
$my_archives = wp_get_archives(array(
'type'=>'monthly',
'limit'=>12,
'echo'=>0
));
return $my_archives;
}
// Create a shortcode
add_shortcode('w3m_custom_archives', 'w3m_limit_archives');
// Enable shortcode execution in text widget
add_filter('widget_text', 'do_shortcode');