Plugin info

Total downloads: 2,799
Active installs: 20
Total reviews: 9
Average rating: 4.6
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 3 language(s)
Contributors: 1
Last updated: 10/23/2016 (3356 days ago)
Added to WordPress: 2/28/2015 (10 years old)
Minimum WordPress version: f
Tested up to WordPress version: 4.6.30
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 3356 days ago • 9 reviews

22/100

Is Easy Post Series abandoned?

Possibly abandoned (last update 3356 days ago).

Compatibility

Requires WordPress: f
Tested up to: 4.6.30
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

WP Post Series
Rating 4.7/5 (9 reviews)Active installs 700
Custom Upload Dir
Rating 4.4/5 (25 reviews)Active installs 5,000
WUPO Group Attributes for WooCommerce
Rating 3.6/5 (14 reviews)Active installs 400
Admin Starred Posts
Rating 5.0/5 (6 reviews)Active installs 400
Alphabetical List
Rating 0.0/5 (0 reviews)Active installs 400
Post Descriptions
Rating 5.0/5 (6 reviews)Active installs 100

Description

This plugin helps you create a series of posts. It creates a new taxonomy named ‘series’ (can be modified via filter, see FAQ). There is no setting needed for this plugin. Once it is installed, assign posts you want to group as a series via post editor.

The plugin also creates a posts navigation on posts that belong to a certain series. See screenshots for the examples.

Installation

How to install this plugin:

  1. Download and extract the plugin.
  2. Upload ‘easy-post-series’ to the ‘/wp-content/plugins/’ directory.
  3. Activate the plugin through the plugin dashboard.

or

  1. Go to your plugin admin page on WP admin dashboard.
  2. Click “Add New” and search the name of the plugin.
  3. Install and activate the plugin.

Frequently Asked Questions

How do I change the style of post navigation?

You can change the style by adding new CSS rules to your theme’s style.css.

What are available filter hooks?

  • wpeps_languages_directory
  • wpeps_taxonomy_labels
  • wpeps_taxonomy_args
  • wpeps_taxonomy
  • wpeps_html_before_nav_paragraph
  • wpeps_html_after_nav_paragraph
  • wpeps_html_after_nav_list
  • wpeps_nav_post_order
  • wpeps_nav_post_orderby
  • wpeps_archive_page_post_order
  • wpeps_archive_page_post_orderby

How to change series taxonomy to something other than ‘series’?

Add the following code to your active theme’s functions.php

add_filter( 'wpeps_taxonomy', 'prfx_series_taxonomy');
function prfx_series_taxonomy( $taxonomy ) {
    return $taxonomy = 'taxonomy-name';
}

How to change series archive page post order?

Add the following code to your active theme’s functions.php

add_filter( 'wpeps_archive_page_post_order', 'prfx_archive_page_post_order');
function prfx_archive_page_post_order( $order ) {
    return $order = 'ASC';
}

add_filter( 'wpeps_archive_page_post_orderby', 'prfx_archive_page_post_orderby');
function prfx_archive_page_post_orderby( $orderby ) {
    return $orderby = 'date';
}

Review feed

Stefano
2/17/2017

Very good!

Works beautifully and doesn't have a sucking frontend design, as other similar plugins do!

Screenshots

  1. Add a series to a post

    Add a series to a post

  2. Posts navigation on a series post

    Posts navigation on a series post

Changelog

1.0

  • Initial release.

1.1

  • Add new filter hooks so that user can modify the plugin (See FAQ for available hooks).

1.1.1

  • Fix: series post nav only showed max 5 posts.

1.1.2

  • Fix: CSS styles and JS scripts
  • Fix: use plugin version number in CSS and JS enqueue script
  • Improve: separate navigation ouput function so it can be outputted using a function