Yearly or Monthly Paginating Custom Post Type Archives + Permalinks

WordPress does not produce pretty permalinks for a custom post type’s year archives, month archives or daily archives.

You can find a custom post type archive by using a query string ie: http://yourdomain.com/?post_type=reviews&year=2013&monthnum=09.

You may want to rewrite your URL to http://yourdomain.com/reviews/2013/09.

The following code snippet can be added to your WordPress theme’s functions.php file to create custom post type date archives that have pretty permalink structure.

 

Remember to modify [YOUR-CUSTOM-POST-TYPE] to reflect the post type you would like to create a date archive for.

Reference: Stackoverflow