Skip to content

Releases: aurovrata/ReOrder-posts-within-categories

v2.15.0 RC1 Filter thumbnails

26 Dec 08:57
Compare
Choose a tag to compare
Pre-release

added admin filter rpwc2_get_thumbnail_url to customise post thumbnail

v2.14.1 Fix duplicate posts in WPML

23 Feb 15:29
Compare
Choose a tag to compare
Pre-release

Fix front-end plugin active check

v2.12.4 RC2 handle multiple orderby directives

03 Feb 12:07
Compare
Choose a tag to compare
v2.12.4rc2

2.12.4rc2

v2.9.4 RC1 Admin reorder page access

25 May 08:49
Compare
Choose a tag to compare
Pre-release
v2.9.4rc1

v2.9.4

v2.9.0 RC2 Improved front-end filter

19 Nov 16:34
Compare
Choose a tag to compare
Pre-release
v2.9.0rc2

self fix

v2.5.5rc1 Fix multi-post filter

10 May 14:02
Compare
Choose a tag to compare
Pre-release
v2.5.5

WooCommerce fix

08 Apr 17:42
Compare
Choose a tag to compare
WooCommerce fix Pre-release
Pre-release
v2.4.3beta1

fix woocommerce issues

v2.0.1 RC1 bug fix for ERR_CONTENT_DECODING_FAILED

23 Sep 13:57
Compare
Choose a tag to compare

v2.0 beta Full rewrite

17 Sep 05:45
Compare
Choose a tag to compare
Pre-release

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

23 Mar 06:23
Compare
Choose a tag to compare

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;
}