Plugin Directory

Changeset 809236


Ignore:
Timestamp:
11/23/2013 09:58:17 AM (12 years ago)
Author:
LordPretender
Message:

Posts ordered by title was not ordered correctly.

Location:
posts-order-widget
Files:
6 added
2 edited

Legend:

Unmodified
Added
Removed
  • posts-order-widget/trunk/post-order-widget.php

    r809226 r809236  
    66Description: This widget will let visitors order posts by context rather than date with a dropdown menu.
    77Author: LordPretender
    8 Version: 1.3.1
     8Version: 1.3.2
    99Author URI: http://www.duy-pham.fr
    1010Domain Path: /languages
     
    5757        case 'datea':
    5858            $result['orderby'] = "date";
     59            $result['order'] = "ASC";
     60
     61            break;
     62       
     63        //Tri du plus ancien au plus récent
     64        case 'title':
     65            $result['orderby'] = "title";
    5966            $result['order'] = "ASC";
    6067
  • posts-order-widget/trunk/readme.txt

    r809226 r809236  
    55Requires at least: 3.6.1
    66Tested up to: 3.6.1
    7 Stable tag: 1.3.1
     7Stable tag: 1.3.2
    88
    99Add the ability to sort the posts by context rather than descending date.
     
    4040== Changelog ==
    4141
     42= 1.3.2 =
     43* Posts ordered by title were not ordered correctly since the previous release.
     44
    4245= 1.3.1 =
    4346* Sticky post were not display first anymore.
Note: See TracChangeset for help on using the changeset viewer.