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

index c03477e..12cd119 100644 (file)
@@ -68,8 +68,6 @@
                         }
                 ?>
                 </ul>
-                <p>Archive</p>
-                <ul><?php wp_get_archives( array( 'type' => 'monthly', 'limit' => 12 ) ); ?></ul>
                 <p>Categories</p>
                 <ul>
                     <?php
@@ -82,6 +80,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>
     </div>
index 158e365..0dd1509 100644 (file)
--- a/home.php
+++ b/home.php
@@ -73,8 +73,6 @@
                         }
                 ?>
                 </ul>
-                <h5>Archive</h5>
-                <ul><?php wp_get_archives( array( 'type' => 'monthly', 'limit' => 12 ) ); ?></ul>
                 <h5>Categories</h5>
                 <ul>
                     <?php
@@ -87,6 +85,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>
+                <h5>Archive</h5>
+                <ul><?php wp_get_archives( array( 'type' => 'monthly', 'limit' => 12 ) ); ?></ul>
             </div>
         </div>
     </div>
index ed23e2b..dc2539d 100644 (file)
@@ -87,8 +87,6 @@
                             }
                     ?>
                     </ul>
-                    <h5>Archive</h5>
-                    <ul><?php wp_get_archives( array( 'type' => 'monthly', 'limit' => 12 ) ); ?></ul>
                     <h5>Categories</h5>
                     <ul>
                         <?php
                           echo '<li><a href="' . get_category_link( $category->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>' . $category->name.'</a> </li> ';  }
                         ?>
                     </ul>
+                    <h5>Archive</h5>
+                    <ul><?php wp_get_archives( array( 'type' => 'monthly', 'limit' => 12 ) ); ?></ul>
                 </div>
             </div>
             <?php } ?>