diff --git a/archive.php b/archive.php
index 818bc50..9c4f319 100644
--- a/archive.php
+++ b/archive.php
@@ -5,21 +5,24 @@
-
-
-
-
-
-
-
- name;
+ } elseif (is_day()) {
+ printf(__('Daily Archives: %s', 'roots'), get_the_date());
+ } elseif (is_month()) {
+ printf(__('Monthly Archives: %s', 'roots'), get_the_date('F Y'));
+ } elseif (is_year()) {
+ printf(__('Yearly Archives: %s', 'roots'), get_the_date('Y'));
+ } elseif (is_author()) {
global $post;
$author_id = $post->post_author;
printf(__('Author Archives: %s', 'roots'), get_the_author_meta('user_nicename', $author_id));
- ?>
-
-
-
+ } else {
+ single_cat_title();
+ }
+ ?>