How we display Archives for specific categories
Add this to your functions.php file and replace ‘Uncategorized with the category name add_filter( ‘getarchives_where’, ‘wse95776_archives_by_cat’, 10, 2 ); /** * Filter the posts by category slug * @param $where * @param $r * * @return string */ function wse95776_archives_by_cat( $where, $r ){ return “WHERE wp_posts.post_type=”post” AND wp_posts.post_status=”publish” AND wp_terms.slug = ‘Uncategorized’ AND wp_term_taxonomy.taxonomy = … Read more