Custom Post Type Archives by Year & Month?

How do you display the archives of a Custom Post Type by Year & Month?

Related posts

Leave a Reply

5 comments

  1. Yes, you can.
    All you need is make a filter for wp_get_archives(); so it accepts post_type parameter:

    function my_custom_post_type_archive_where($where,$args){  
        $post_type  = isset($args['post_type'])  ? $args['post_type']  : 'post';  
        $where = "WHERE post_type = '$post_type' AND post_status = 'publish'";
        return $where;  
    }
    

    then call this:

    add_filter( 'getarchives_where','my_custom_post_type_archive_where',10,2);
    

    Whenever you want to display archive by custom post type, just pass the post_type args:

    $args = array(
        'post_type'    => 'your_custom_post_type',
        'type'         => 'monthly',
        'echo'         => 0
    );
    echo '<ul>'.wp_get_archives($args).'</ul>';
    
  2. You don’t, the official line from the WordPress developers was that custom post types weren’t intended to do the job of normal ordinary posts, and that if you need post archives of dates etc, then you’re not doing things correctly, and you’re better off using post formats etc..

    Custom post types are intended for web applications etc, whereas doing something such as setting up a custom post type that acts as a secondary or parallel blog with a different name, e.g. blog vs news, with the same abilities, is not what the feature was intended for, and would mean other technical issues arising from its implementation.

    If you are still insistent on this, and simply using custom taxonomies and post formats is not enough, you could add rewrite rules in functions.php and redirect year/month archives in certain URLs to the post archive page, and then check on the custom post archive page if you’ve specified variables in your rewrite rules and load a different template, making sure in your rewrite rules to set the appropriate values.

  3. EDIT -> while this answer still works for < WP4.4, since 4.4 support for Custom Post Types is now included in wp_get_archives()


    There finally is a simple, quick and easy solution for date based archives of Custom Post Types in WordPress! This has been a long standing issue that is recorded here in the WP Core Trac.

    It has yet to be solved but one of the contributors to the Trac has posted a simple plugin in GitHub that will enable you to have date based archives for CPTs.

    After installing this plugin, or adding the code for your functions manually you case use archives for CPTs as such:

    <?php wp_get_archives_cpt( 'post_type=custom_post_type' ); ?>

    Note this new function wp_get_archives_cpt works the same as the standard wp_get_archives so you can use any of the regular arguments it accepts. However, it simply adds the ability for you to be able to add a custom post type name argument.

  4. Not enough reputation to add this to taiken’s answer sorry.

    However wanted to add that his answer did work for me, however the links were in the ‘localhost/date/2010’ format. Whereas I needed ‘localhost/postslug/2010’ format. I was able to fix this by using a string replace on the output of wp_get_archives.

    So depending on how your permalinks are set this code will fix the 404 problem and redirect the links to the custom post type permalink structure:

    $yearly_archive = wp_get_archives(array( 'type' => 'yearly', 'post_type' => '<your post type name>', 'echo' => '0') );
    $blog_url = get_bloginfo('url');
    echo str_replace(($blog_url . '/date'), ($blog_url . '<your post type slug>'),$yearly_archive);
    
  5. Can’t add to takien’s post so here’s what I ended up having to do:

    functions.php

    add_action('init', 'my_year_archive_rewrites');  
    function my_year_archive_rewrites() {   
        add_rewrite_rule('resource/news/([0-9]{4})/page/?([0-9]{1,})/?', 'index.php?post_type=news&year=$matches[1]&paged=$matches[2]', 'top');
        add_rewrite_rule('resource/news/([0-9]{4})/?', 'index.php?post_type=news&year=$matches[1]', 'top');
    }
    
    add_filter('getarchives_where', 'my_custom_post_type_archive_where', 10, 2);
    function my_custom_post_type_archive_where($where,$args){  
        $post_type = isset($args['post_type']) ? $args['post_type'] : 'post';  
        return "WHERE post_type = '$post_type' AND post_status = 'publish'";
    }
    
    add_filter('year_link', 'my_year_link');
    function my_year_link($link) {
        global $wp_rewrite;
    
        if(true) { // however you determine what archive you want
            $link = str_replace($wp_rewrite->front, '/resource/news/', $link);
        }
    
        return $link;
    }
    

    Calling wp_get_archives()

    wp_get_archives(array('post_type'=>'news', 'type'=>'yearly'));