Plugin Directory

Changeset 2896661


Ignore:
Timestamp:
04/10/2023 03:01:55 PM (3 years ago)
Author:
Somonator
Message:

update to 1.5.1

Location:
terms-dictionary/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • terms-dictionary/trunk/Readme.txt

    r2896212 r2896661  
    38381.4.1 Fix php notice after added terms without title, removed 404 view links from wp admin
    39391.5 Adding tags for terms, little stylish, small corrections
     401.5.1 Fix alphabetical order
  • terms-dictionary/trunk/dictionary.php

    r2896212 r2896661  
    33    Plugin Name: Terms Dictionary
    44    Description: Plugin to create a small dictionary with automatic grouping by letters.
    5     Version: 1.5
     5    Version: 1.5.1
    66    Author: Somonator
    77    Author URI: mailto:somonator@gmail.com
  • terms-dictionary/trunk/frontend.php

    r2896212 r2896661  
    2121        'post_type' => 'dict-terms',
    2222        'orderby' => 'title',   
    23         'order' => 'DESC',
     23        'order' => 'ASC',
    2424        'paged' => $page_terms
    2525    );
     
    7171            $args = array(
    7272                'taxonomy' => 'dict-terms-letter',
    73                 'order' => 'DESC',
     73                'order' => 'ASC',
    7474                'hide_empty' => true
    7575            );
Note: See TracChangeset for help on using the changeset viewer.