Customize widget archives

This commit is contained in:
Roman Pyrih
2024-09-27 14:07:49 +02:00
parent 7175b922e1
commit 25ec95e67b
8 changed files with 130 additions and 17 deletions

View File

@@ -0,0 +1,7 @@
jQuery(document).ready(function($) {
$('.archive-year-toggle').on('click', function() {
var monthsList = $(this).next('.archive-months');
monthsList.slideToggle();
});
});