switching archive and categories in the blog side bar
authorAnthony Talarico <talarico@gaslightmedia.com>
Mon, 12 Sep 2016 17:51:36 +0000 (13:51 -0400)
committerAnthony Talarico <talarico@gaslightmedia.com>
Mon, 12 Sep 2016 17:51:36 +0000 (13:51 -0400)
parts/blog-sidebar-r.php

index 77944eb..970889a 100644 (file)
@@ -15,8 +15,6 @@
                         }
                 ?>
                 </ul>
-                <h2>Archive</h2>
-                <ul><?php wp_get_archives( array( 'type' => 'monthly', 'limit' => 12 ) ); ?></ul>
                 <h2>Categories</h2>
                 <ul>
                     <?php
@@ -29,5 +27,8 @@
                       echo '<li><a href="' . get_category_link( $category->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>' . $category->name.'</a> </li> ';  }
                     ?>
                 </ul>
+                <h2>Archive</h2>
+                <ul><?php wp_get_archives( array( 'type' => 'monthly', 'limit' => 12 ) ); ?></ul>
+
             </div>
         </div>
\ No newline at end of file