Skip to content

Instantly share code, notes, and snippets.

@vividvilla
Created January 10, 2014 06:59
Show Gist options
  • Save vividvilla/8347994 to your computer and use it in GitHub Desktop.
Save vividvilla/8347994 to your computer and use it in GitHub Desktop.
Page archive - WordPress
<?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