Version Description
- Adds menu order sort by option
Download this release
Release Info
Developer | bostondv |
Plugin | Ultimate Posts Widget |
Version | 2.0.5 |
Comparing to | |
See all releases |
Code changes from version 2.0.4 to 2.0.5
- package.json +1 -1
- readme.md +3 -0
- readme.txt +4 -1
- ultimate-posts-widget.php +2 -1
package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
{
|
2 |
"name": "bostondv/ultimate-posts-widget",
|
3 |
-
"version": "2.0.
|
4 |
"contributors": [
|
5 |
"Boston Dell-Vandenberg <boston@pomelodesign.com>"
|
6 |
],
|
1 |
{
|
2 |
"name": "bostondv/ultimate-posts-widget",
|
3 |
+
"version": "2.0.5",
|
4 |
"contributors": [
|
5 |
"Boston Dell-Vandenberg <boston@pomelodesign.com>"
|
6 |
],
|
readme.md
CHANGED
@@ -107,6 +107,9 @@ This plugin uses the [timthumb library](http://www.binarymoon.co.uk/projects/tim
|
|
107 |
|
108 |
## Changelog
|
109 |
|
|
|
|
|
|
|
110 |
### 2.0.4
|
111 |
* Updated class constructor for WordPress 4.3 compatibility (thanks @JustB)
|
112 |
|
107 |
|
108 |
## Changelog
|
109 |
|
110 |
+
### 2.0.5
|
111 |
+
* Adds menu order sort by option
|
112 |
+
|
113 |
### 2.0.4
|
114 |
* Updated class constructor for WordPress 4.3 compatibility (thanks @JustB)
|
115 |
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ License URI: http://opensource.org/licenses/MIT
|
|
6 |
Tags: widget, recent posts, custom post types, sticky posts, featured image, post thumbnail, excerpts, category, custom fields, list pages, widget query, microformats, customizable widget, categories widget, tags widget, excerpt, widget templates, post author, post date, custom query, ultimate posts, comments, orderby, comment count
|
7 |
Requires at least: 3.5
|
8 |
Tested up to: 4.3
|
9 |
-
Stable tag: 2.0.
|
10 |
|
11 |
The ultimate widget for displaying posts, custom post types or sticky posts with an array of options.
|
12 |
|
@@ -123,6 +123,9 @@ This plugin uses the [timthumb library](http://www.binarymoon.co.uk/projects/tim
|
|
123 |
|
124 |
== Changelog ==
|
125 |
|
|
|
|
|
|
|
126 |
= 2.0.4 =
|
127 |
* Updated class constructor for WordPress 4.3 compatibility (thanks @JustB)
|
128 |
|
6 |
Tags: widget, recent posts, custom post types, sticky posts, featured image, post thumbnail, excerpts, category, custom fields, list pages, widget query, microformats, customizable widget, categories widget, tags widget, excerpt, widget templates, post author, post date, custom query, ultimate posts, comments, orderby, comment count
|
7 |
Requires at least: 3.5
|
8 |
Tested up to: 4.3
|
9 |
+
Stable tag: 2.0.5
|
10 |
|
11 |
The ultimate widget for displaying posts, custom post types or sticky posts with an array of options.
|
12 |
|
123 |
|
124 |
== Changelog ==
|
125 |
|
126 |
+
= 2.0.5 =
|
127 |
+
* Adds menu order sort by option
|
128 |
+
|
129 |
= 2.0.4 =
|
130 |
* Updated class constructor for WordPress 4.3 compatibility (thanks @JustB)
|
131 |
|
ultimate-posts-widget.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Ultimate Posts Widget
|
4 |
Plugin URI: http://wordpress.org/plugins/ultimate-posts-widget/
|
5 |
Description: The ultimate widget for displaying posts, custom post types or sticky posts with an array of options.
|
6 |
-
Version: 2.0.
|
7 |
Author: Boston Dell-Vandenberg
|
8 |
Author URI: http://pomelodesign.com
|
9 |
Text Domain: upw
|
@@ -595,6 +595,7 @@ if ( !class_exists( 'WP_Widget_Ultimate_Posts' ) ) {
|
|
595 |
<option value="comment_count"<?php if( $orderby == 'comment_count') echo ' selected'; ?>><?php _e('Comment Count', 'upw'); ?></option>
|
596 |
<option value="rand"<?php if( $orderby == 'rand') echo ' selected'; ?>><?php _e('Random'); ?></option>
|
597 |
<option value="meta_value"<?php if( $orderby == 'meta_value') echo ' selected'; ?>><?php _e('Custom Field', 'upw'); ?></option>
|
|
|
598 |
</select>
|
599 |
</p>
|
600 |
|
3 |
Plugin Name: Ultimate Posts Widget
|
4 |
Plugin URI: http://wordpress.org/plugins/ultimate-posts-widget/
|
5 |
Description: The ultimate widget for displaying posts, custom post types or sticky posts with an array of options.
|
6 |
+
Version: 2.0.5
|
7 |
Author: Boston Dell-Vandenberg
|
8 |
Author URI: http://pomelodesign.com
|
9 |
Text Domain: upw
|
595 |
<option value="comment_count"<?php if( $orderby == 'comment_count') echo ' selected'; ?>><?php _e('Comment Count', 'upw'); ?></option>
|
596 |
<option value="rand"<?php if( $orderby == 'rand') echo ' selected'; ?>><?php _e('Random'); ?></option>
|
597 |
<option value="meta_value"<?php if( $orderby == 'meta_value') echo ' selected'; ?>><?php _e('Custom Field', 'upw'); ?></option>
|
598 |
+
<option value="menu_order"<?php if( $orderby == 'menu_order') echo ' selected'; ?>><?php _e('Menu Order', 'upw'); ?></option>
|
599 |
</select>
|
600 |
</p>
|
601 |
|