switching archives and categories position in the sidebar blog
authorAnthony Talarico <talarico@gaslightmedia.com>
Mon, 12 Sep 2016 17:44:11 +0000 (13:44 -0400)
committerAnthony Talarico <talarico@gaslightmedia.com>
Mon, 12 Sep 2016 17:44:11 +0000 (13:44 -0400)
parts/blog-sidebar-r.php

index 1aa6bf7..c314683 100644 (file)
@@ -15,9 +15,7 @@
                         }
                 ?>
                 </ul>
-                <p>Archive</p>
-                <ul><?php wp_get_archives( array( 'type' => 'monthly', 'limit' => 12 ) ); ?></ul>
-                <p>Categories</p>
+                 <p>Categories</p>
                 <ul>
                     <?php
                     $args = array(
@@ -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>
+                <p>Archive</p>
+                <ul><?php wp_get_archives( array( 'type' => 'monthly', 'limit' => 12 ) ); ?></ul>
+               
             </div>
         </div>
\ No newline at end of file