Changeset 2567295
- Timestamp:
- 07/19/2021 12:41:42 PM (5 years ago)
- Location:
- query-wrangler/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (3 diffs)
-
admin/css/query-wrangler.css (modified) (1 diff)
-
docs/examples/sort.md (modified) (1 diff)
-
query-wrangler.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
query-wrangler/trunk/README.txt
r2484267 r2567295 4 4 Tags: query, pages, widget, admin, widgets, administration, manage, views, loop 5 5 Requires at least: 4 6 Tested up to: 5. 6.26 Tested up to: 5.8 7 7 Stable tag: trunk 8 8 … … 75 75 == Changelog == 76 76 77 = 1.5.51 = 78 79 * Tested up to WordPress 5.8-RC4. 80 * Minor style improvement on editor form. 81 77 82 = 1.5.50 = 78 83 … … 385 390 == Upgrade Notice == 386 391 387 1.5.5 0 New reature to hide header and footer when result set empty.392 1.5.51 Tested with upcoming 5.8 release -
query-wrangler/trunk/admin/css/query-wrangler.css
r2480680 r2567295 143 143 } 144 144 145 .qw-setting-header {146 display: block;147 padding: .4em .5em .4em 2em;148 }149 150 145 #qw-edit-query-form textarea { 151 146 font-family: monospace; 147 } 148 149 #row-style-settings h3.qw-setting-header { 150 padding-left: 0; 151 } 152 153 #row-style-settings .qw-setting-group { 154 padding-left: 1em; 155 padding-bottom: 1em; 156 border-bottom: 1px solid #ddd; 157 margin-bottom: .5em; 158 } 159 #row-style-settings .qw-query-content:last-of-type .qw-setting-group { 160 border: none; 152 161 } 153 162 -
query-wrangler/trunk/docs/examples/sort.md
r1173266 r2567295 65 65 * 66 66 * @param &$args - The WP_Query arguments we are building 67 * @param $ filter - This filter's settings and values68 Values stored in $filter['values']67 * @param $sort - This sort's settings and values 68 Values stored in $sort['values'] 69 69 */ 70 70 function qw_sort_example_query_args(&$args, $sort){ 71 71 $args[$sort['orderby_key']] = $sort['type']; 72 $args[$sort['order_key']] = $sort[' order_value'];72 $args[$sort['order_key']] = $sort['values']['order_value']; 73 73 } 74 74 ```` -
query-wrangler/trunk/query-wrangler.php
r2484267 r2567295 10 10 Author: Jonathan Daggerhart 11 11 Author URI: http://daggerhart.com 12 Version: 1.5.5 012 Version: 1.5.51 13 13 14 14 ****************************************************************** … … 31 31 32 32 // some useful definitions 33 define( 'QW_VERSION', 1.55 0);33 define( 'QW_VERSION', 1.551 ); 34 34 define( 'QW_PLUGIN_DIR', dirname( __FILE__ ) ); 35 35 define( 'QW_PLUGIN_URL', plugins_url( '', __FILE__ ) );
Note: See TracChangeset
for help on using the changeset viewer.