Created
January 10, 2014 06:59
-
-
Save vividvilla/8347994 to your computer and use it in GitHub Desktop.
Page archive - WordPress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Template Name: Archives | |
*/ | |
get_header(); ?> | |
<section id="primary" class="content-area"> | |
<div id="content" class="site-content" role="main"> | |
<?php the_post(); ?> | |
<h2>Recent Articles</h2> | |
<ol><?php wp_get_archives('type=postbypost&limit=10'); ?></ol> | |
<h2>Archives by Month:</h2> | |
<ul><?php wp_get_archives('type=monthly'); ?></ul> | |
<h2>Archives by Category:</h2> | |
<ul><?php wp_list_categories(); ?></ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment