Changeset 2896661
- Timestamp:
- 04/10/2023 03:01:55 PM (3 years ago)
- Location:
- terms-dictionary/trunk
- Files:
-
- 3 edited
-
Readme.txt (modified) (1 diff)
-
dictionary.php (modified) (1 diff)
-
frontend.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
terms-dictionary/trunk/Readme.txt
r2896212 r2896661 38 38 1.4.1 Fix php notice after added terms without title, removed 404 view links from wp admin 39 39 1.5 Adding tags for terms, little stylish, small corrections 40 1.5.1 Fix alphabetical order -
terms-dictionary/trunk/dictionary.php
r2896212 r2896661 3 3 Plugin Name: Terms Dictionary 4 4 Description: Plugin to create a small dictionary with automatic grouping by letters. 5 Version: 1.5 5 Version: 1.5.1 6 6 Author: Somonator 7 7 Author URI: mailto:somonator@gmail.com -
terms-dictionary/trunk/frontend.php
r2896212 r2896661 21 21 'post_type' => 'dict-terms', 22 22 'orderby' => 'title', 23 'order' => ' DESC',23 'order' => 'ASC', 24 24 'paged' => $page_terms 25 25 ); … … 71 71 $args = array( 72 72 'taxonomy' => 'dict-terms-letter', 73 'order' => ' DESC',73 'order' => 'ASC', 74 74 'hide_empty' => true 75 75 );
Note: See TracChangeset
for help on using the changeset viewer.