switching archive and categories in the blog sidebar
authorAnthony Talarico <talarico@gaslightmedia.com>
Mon, 12 Sep 2016 18:26:20 +0000 (14:26 -0400)
committerAnthony Talarico <talarico@gaslightmedia.com>
Mon, 12 Sep 2016 18:26:20 +0000 (14:26 -0400)
parts/blog-sidebar.php

index 7477302..081dde1 100644 (file)
@@ -14,8 +14,6 @@
                                         }
                                 ?>
                                 </ul>
-                                <p>Archive</p>
-                                <ul><?php wp_get_archives( array( 'type' => 'monthly', 'limit' => 12 ) ); ?></ul>
                                 <p>Categories</p>
                                 <ul>
                                     <?php
@@ -28,4 +26,6 @@
                                       echo '<li><a href="' . get_category_link( $category->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>' . $category->name.'</a> </li> ';  } 
                                     ?>
                                 </ul>
+                                <p>Archive</p>
+                                <ul><?php wp_get_archives( array( 'type' => 'monthly', 'limit' => 12 ) ); ?></ul>
                             </div>