mikejolley / wp-post-series

Publish and link together a series of posts using a new "series" taxonomy. Automatically display links to other posts in a series above your content.

Home Page:https://wordpress.org/plugins/wp-post-series/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Archives page

icarnaghan opened this issue · comments

Is there a plan to add an archives page, e.g. mysite.com/series/series-name?

You can enable archive support by toggling this filter with custom code:

https://github.com/mikejolley/wp-post-series/blob/master/src/TaxonomyController.php#L69

add_filter( 'wp_post_series_enable_archive', '__return_true' );

It is disabled by default because enabling archives would lead to template/theme conflicts. You may need to do some extra theme styling/templating to make that archive look good.