Archive links don’t work when clicked
OK. Here is your problem. wp_get_archives( $args ); … $args = array( ‘type’ => ‘monthly’, ‘limit’ => , ‘format’ => ‘html’, ‘before’ => , ‘after’ => , ‘show_post_count’ => false, ‘echo’ => 1 ); You are use wp_get_archives incorrectly. That function accepts particular ‘keys’, and cat isn’t one of them. You can use an array … Read more