Post Order By Category
Post Order By Category
Description
Reverse the post order for a specific category to be date ascending. This is a lightweight plugin that adds the option to reorder the posts from a specific category by published date (ascending or descending). When creating or editing a category from the Admin Dashboard, the user can choose to sort the posts for that category by oldest (old posts on top of the page) or newest (new posts first). Useful for journals, books or achives, who need to have a chronological sort order for certain category archives.
Installation
- Take the easy route and install through the WordPress plugin installer or download the .zip file and upload the unzipped folder to the
/wp-content/plugins/directory - Activate the plugin through the ‘Plugins’ menu in WordPress
Faq
When editing or updating a category from the WordPress dashboard (click on posts => categories => edit), a dropdown to select options will appear after the category description. The options are “Oldest” (show posts by date ascending or the so called chronological order) or “Newest” (show posts by date ascending or the WordPress way). The default value is “Newest”, which is the same as the WordPress default post sort.
When you choose “Oldest”, the plugin will automatically display the posts from that category archive page in chronological order.
The plugin currently does not have any more options. However, it can be forked to sort posts by other criteria, including post title. It can also be adjusted to sort posts by more than one criteria. For more information on how to do it, feel free to check this article or contact me directly! The plugin does exactly what it states it does. If you like it, please give it a 5-star rating.
Yes, since version 1.03, you can reverse post order for category archive pages that belong to custom post types, e.g. projects or portfolio, as long as the custom post type supports post categories. This plugin works with Custom Post Type UI plugin. However, WordPress does not support category archives by default. To display category archive page for category “awesome-projects” for custom post type “project”, you need to add the following code in your child theme’s functions.php:
function my_custom_query_post_type($query) {
if ( is_category() && ( ! isset( $query->query_vars['suppress_filters'] ) || false == $query->query_vars['suppress_filters'] ) ) {
//replace project and movie with your custom post type name
$query->set( 'post_type', array( 'post', 'project', 'movie' ) );
return $query;
}
}
If you are using the CPT UI plugin to create custom post types, you would also need to go to Edit post types>Taxonomies and put a tick on “Categories”. Check this article if you need more information how to set up categories on custom post types.
Reviews
Works like a charme
By YogieAnamCara on January 4, 2025
I am so grateful for this plugin, it does exactly what I was looking for!
Some categories at my blog need to follow the publishing date and be read/displayed in chronological order. Job done with this plugin!
Fantastic! Just what I needed.
By ade2002 on May 27, 2022
Perfect for Travel Blogs
By darro on May 26, 2021
Work Perfect
By healiny on October 13, 2020
Oldest to Newest: Just what my Time Line needed
By cynthiablue44 on July 25, 2020
Awesome pugin!
By nraykov on October 11, 2019
Changelog
1.0.5
Improve localization support
1.04
Fix deprecation notice in wp-admin. Add support to Custom Post Type UI plugin and update docs.
1.03
Fix php notices on 404 pages. Add support to custom post types.
1.02
First release in WordPress repo.
1.01
Sanitized input and output.
1.0
- First publicly available version of the plugin.
