hello guys,
just recently installed a theme in my site and will gonna use it for the blog of blogs im working.. its simple 3 column theme.. check it here.
ok, my problem is.. when i installed the theme.. the Archive page doesn't work. do i need to have a plugin for this (please check the archive page here). my wordpress version is 2.0.5. not sure if thats thereason why the archive page doesn't work. it goes to 404 page..
here is the code for archives.php
anyone would like to help? thanks!
just recently installed a theme in my site and will gonna use it for the blog of blogs im working.. its simple 3 column theme.. check it here.
ok, my problem is.. when i installed the theme.. the Archive page doesn't work. do i need to have a plugin for this (please check the archive page here). my wordpress version is 2.0.5. not sure if thats thereason why the archive page doesn't work. it goes to 404 page..
here is the code for archives.php
Code:
<?php
/*
Template Name: Archives
*/
?>
<?php get_header(); ?>
<div id="content_box">
<?php include (TEMPLATEPATH . '/l_sidebar.php'); ?>
<div id="content" class="pages">
<h2>Browse the Archives...</h2>
<div class="entry">
<h3 class="top">by month:</h3>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
<h3>by Category:</h3>
<ul>
<?php wp_list_categories('title_li=10'); ?>
</ul>
</div>
<div class="clear rule"></div>
</div>
<?php include (TEMPLATEPATH . '/r_sidebar.php'); ?>
</div>
<?php get_footer(); ?>


Comment