Easily filter the admin list of post and custom post type with a date range.
Contributors: jonathanbardo, lossonet, stream
Tags: date, filter, admin, dashboard, widget, stats
Requires at least: 3.7
Tested up to: 4.7.1
Stable tag: trunk (master)
License: GPLv2 or later
Note: This plugin requires PHP 5.3 or higher to be activated. 5.4 Strongly recommended.
A big shout-out to the Stream team for developing much of the functionnality of this plugin and letting me reuse it for another purposes. You guys rock!
This plugin was develop to supercharge the current date filter of WordPress admin. It will let you filter posts by a custom date range or by an already defined range.
By default the plugin only filters post creation date. If you would like to filter the post modified date, please use this filter:
function my_date_range_filter_query_column( $column ){
return 'post_modified';
}
add_filter( 'date_range_filter_query_column', 'my_date_range_filter_query_column', 10, 1 );
Languages Supported:
- English
Improvement? Bugs?
Please fill out an issue here.
- Let user enter date manually for custom date range
- Add min js & css
Fix compatibility with WooCommerce
Fix compatibility with WooCommerce
Fix some php 5.3 incompatibilities
Add localization
Fix a bug where calling public function would throw a fatal error
Fix bug in dashboard widgets
Add new dashboard widgets
Allow select2 if present
Add date range filter on media
Add sanitization and plugin hooks
Initial release. Props Stream