Skip to content

Instantly share code, notes, and snippets.

View LukaszJaro's full-sized avatar

LukaszJaro

View GitHub Profile
@LukaszJaro
LukaszJaro / functions.php
Created December 12, 2022 14:48 — forked from shuhei/functions.php
Add 'cat' query to `wp_get_archives()`
//
// Example:
// $cat_ID = 12;
// wp_get_cat_archives('type=monthly', $cat_ID);
//
// Borrowed a lot from the following links.
//
// - http://wordpress.org/support/topic/wp_get_archives-and-conditional-tags
// - http://www.stemlegal.com/greenhouse/2012/setting-up-month-archives-to-only-display-custom-taxonomy-wordpress/
//