Forums
Forums / Plugin: Archive / Yearly archive
(@asterali)
11 years, 8 months ago
how to show a monthly archive ?
thanks
https://ww.wp.xz.cn/plugins/archive/
(@bueltge)
You can use the same possibilities as other custom post type, see the codex. This plugin create the post type archive and you can create a template inside your theme with a loop about the monthly posts.
$args = array( 'post_type' => 'archive', 'type' => 'monthly', 'echo' => 0 ); echo '<ul>'.wp_get_archives($args).'</ul>';
The topic ‘Yearly archive’ is closed to new replies.