Changeset 3188506
- Timestamp:
- 11/14/2024 09:50:27 AM (14 months ago)
- Location:
- taxonomy-terms-order
- Files:
-
- 22 added
- 4 edited
-
tags/1.8.7 (added)
-
tags/1.8.7/composer.json (added)
-
tags/1.8.7/css (added)
-
tags/1.8.7/css/to.css (added)
-
tags/1.8.7/images (added)
-
tags/1.8.7/images/menu-icon.png (added)
-
tags/1.8.7/include (added)
-
tags/1.8.7/include/class.addons.php (added)
-
tags/1.8.7/include/class.functions.php (added)
-
tags/1.8.7/include/class.interface.php (added)
-
tags/1.8.7/include/class.options.php (added)
-
tags/1.8.7/include/class.terms_walker.php (added)
-
tags/1.8.7/include/class.tto.php (added)
-
tags/1.8.7/js (added)
-
tags/1.8.7/js/to-javascript.js (added)
-
tags/1.8.7/languages (added)
-
tags/1.8.7/languages/taxonomy-terms-order.mo (added)
-
tags/1.8.7/languages/taxonomy-terms-order.po (added)
-
tags/1.8.7/readme.txt (added)
-
tags/1.8.7/screenshot-1.png (added)
-
tags/1.8.7/screenshot-2.png (added)
-
tags/1.8.7/taxonomy-terms-order.php (added)
-
trunk/css/to.css (modified) (1 diff)
-
trunk/include/class.terms_walker.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/taxonomy-terms-order.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
taxonomy-terms-order/trunk/css/to.css
r3146515 r3188506 8 8 #order-terms ul.children {margin-left: 25px} 9 9 10 #order-terms #tto_sortable li > .item { padding: 2px 0px; margin: 4px 0px; border: 1px solid #DDDDDD; cursor: move; -moz-border-radius:6px; background-color: #f9f9f9; }10 #order-terms #tto_sortable li > .item { padding: 2px 0px; margin: 4px 0px; border: 1px solid #DDDDDD; cursor: move; -moz-border-radius:6px; background-color: #f9f9f9; clear: both} 11 11 #order-terms #tto_sortable li:nth-child(2n+1) > .item { background-color: #fff !important;} 12 #order-terms #tto_sortable li span { display: block; padding: 5px 10px; color:#555; font-size:13px;} 12 #order-terms #tto_sortable li span.title { display: inline-block; padding: 5px 10px; color:#555; font-size:13px;} 13 #order-terms #tto_sortable li span.actions {float: right; padding: 5px 10px;} 14 #order-terms #tto_sortable li span.actions a {text-decoration: none} 13 15 #order-terms #tto_sortable li.placeholder{border: dashed 2px #ccc;height:30px; background-color: #FFF;} 14 16 -
taxonomy-terms-order/trunk/include/class.terms_walker.php
r3146515 r3188506 33 33 else 34 34 $indent = ''; 35 36 //extract($args, EXTR_SKIP); 37 $taxonomy = get_taxonomy($term->term_taxonomy_id); 38 $output .= $indent . '<li class="term_type_li" id="item_'.$term->term_id.'"><div class="item"><span>'.apply_filters( 'to/term_title', $term->name, $term ).' </span></div>'; 35 36 $currentScreen = get_current_screen(); 37 38 $term_link = isset ( $currentScreen->post_type ) ? get_edit_term_link( $term, $term->taxonomy, $currentScreen->post_type ) : get_edit_term_link( $term ); 39 40 $output .= $indent . '<li class="term_type_li" id="item_'.$term->term_id.'"><div class="item"><span class="title">'.apply_filters( 'to/term_title', $term->name, $term ).' </span> <span class="actions"><a href="' . $term_link .'"><span class="dashicons dashicons-edit"></span></a></span></div>'; 39 41 } 40 42 -
taxonomy-terms-order/trunk/readme.txt
r3148530 r3188506 4 4 Tags: category order,terms order, taxonomy order, categories sort 5 5 Requires at least: 2.8 6 Tested up to: 6. 6.17 Stable tag: 1.8. 66 Tested up to: 6.7 7 Stable tag: 1.8.7 8 8 9 9 Order Categories and all custom taxonomies terms (hierarchically) using a Drag and Drop Sortable JavaScript capability. … … 60 60 61 61 == Change Log == 62 63 = 1.8.7 = 64 - CSS adjustments for span action section. 65 - Option for term edit link. 66 - Include the term edit link on the ReOrder interface. 67 - Wordpress 6.7 compatibility check and tag update. 62 68 63 69 = 1.8.6 = -
taxonomy-terms-order/trunk/taxonomy-terms-order.php
r3148530 r3188506 4 4 * Plugin URI: http://www.nsp-code.com 5 5 * Description: Order Categories and all custom taxonomies terms (hierarchically) and child terms using a Drag and Drop Sortable javascript capability. 6 * Version: 1.8. 66 * Version: 1.8.7 7 7 * Author: Nsp-Code 8 8 * Author URI: https://www.nsp-code.com
Note: See TracChangeset
for help on using the changeset viewer.