lbhat 0 Report post Posted December 3, 2009 How do I get the Archives to show up on a separate page without using plugins? Share this post Link to post Share on other sites
Andrew 207 Report post Posted December 3, 2009 You could create a page template and use the `<?php wp_get_archives( $args ); ?>` function. Or create an archive.php page. Why don't you want to use a plugin? Share this post Link to post Share on other sites
lbhat 0 Report post Posted December 3, 2009 I already have an Archives page. Do i simply paste the above code in the page under WP Admin? Share this post Link to post Share on other sites
Andrew 207 Report post Posted December 3, 2009 no its not that easy, but you can try it. try this: ` <?php get_header(); ?> ...CONTENT... (code) <?php get_footer(); ?> ` Share this post Link to post Share on other sites