Viewing 1 replies (of 1 total)
  • Plugin Author Frank Bueltge

    (@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>';
Viewing 1 replies (of 1 total)

The topic ‘Yearly archive’ is closed to new replies.