Releases: aurovrata/ReOrder-posts-within-categories
Releases · aurovrata/ReOrder-posts-within-categories
v2.15.0 RC1 Filter thumbnails
added admin filter rpwc2_get_thumbnail_url to customise post thumbnail
v2.14.1 Fix duplicate posts in WPML
Fix front-end plugin active check
v2.12.4 RC2 handle multiple orderby directives
v2.12.4rc2 2.12.4rc2
v2.9.4 RC1 Admin reorder page access
v2.9.4rc1 v2.9.4
v2.9.0 RC2 Improved front-end filter
v2.9.0rc2 self fix
v2.5.5rc1 Fix multi-post filter
v2.5.5
WooCommerce fix
v2.4.3beta1 fix woocommerce issues
v2.0.1 RC1 bug fix for ERR_CONTENT_DECODING_FAILED
v2.0 beta Full rewrite
This release includes the following
- complete re-write of the plugin file structure.
- removal of custom DB table, post rank is now saved as a postmeta key.
- addition of a new filter 'reorder_post_within_categories_new_post_first' to allow new posts to be ranked first instead of last by default.
- proper handling of post_type for order ranking.
- ability to reset/delete data from settings page.
Added a filter to enable exclusion of children from admin post query
This was a request on the wordpress support by Anychanh.
Added a filter in the admin post query, so as to enable modification of the query args.
Example of filter use to exclude children of a given category,
add_filter('reorder_post_within_category_query_args', 'exclude_children');
function exclude_children($args) {
$args['tax_query'][0]['include_children']=false;
return $args;
}