Recent Posts Widget Extended - Version 0.2

Version Description

  • Minor update
Download this release

Release Info

Developer satrya
Plugin Icon 128x128 Recent Posts Widget Extended
Version 0.2
Comparing to
See all releases

Code changes from version 0.1 to 0.2

includes/widget-recent-posts-extended.php CHANGED
@@ -51,8 +51,7 @@ class rpwe_widget extends WP_Widget {
51
  if ( false === ( $rpwewidget = get_transient( 'rpwewidget_' . $widget_id ) ) ) {
52
 
53
  $args = array(
54
- 'numberposts' => $limit,
55
- 'offset'=> 0,
56
  'cat' => $cat,
57
  'post_type' => $post_type
58
  );
@@ -86,7 +85,7 @@ class rpwe_widget extends WP_Widget {
86
 
87
  </ul>
88
 
89
- </div><!-- .rpwe-block -->
90
 
91
  <?php
92
 
@@ -195,6 +194,9 @@ class rpwe_widget extends WP_Widget {
195
  <?php } ?>
196
  </select>
197
  </p>
 
 
 
198
 
199
  <?php
200
  }
51
  if ( false === ( $rpwewidget = get_transient( 'rpwewidget_' . $widget_id ) ) ) {
52
 
53
  $args = array(
54
+ 'numberposts' => $limit,
 
55
  'cat' => $cat,
56
  'post_type' => $post_type
57
  );
85
 
86
  </ul>
87
 
88
+ </div><!-- .rpwe-block - http://wordpress.org/extend/plugins/recent-posts-widget-extended/ -->
89
 
90
  <?php
91
 
194
  <?php } ?>
195
  </select>
196
  </p>
197
+ <p>
198
+ <span style="color: #f00;">Recent Posts Widget Extended is a project by <a href="http://tokokoo.com" target="_blank">Tokokoo</a></span>
199
+ </p>
200
 
201
  <?php
202
  }
languages/rpwe.po CHANGED
@@ -3,8 +3,8 @@ msgstr ""
3
  "Project-Id-Version: Recent Posts Widget Extended 0.1\n"
4
  "POT-Creation-Date: 2012-12-03 11:37+0700\n"
5
  "PO-Revision-Date: 2012-12-03 11:39+0700\n"
6
- "Last-Translator: M.Satrya <asksatrya@gmail.com>\n"
7
- "Language-Team: satrya <asksatrya@gmail.com>\n"
8
  "Language: English\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
3
  "Project-Id-Version: Recent Posts Widget Extended 0.1\n"
4
  "POT-Creation-Date: 2012-12-03 11:37+0700\n"
5
  "PO-Revision-Date: 2012-12-03 11:39+0700\n"
6
+ "Last-Translator: M.Satrya <satrya@tokokoo.com>\n"
7
+ "Language-Team: satrya <satrya@tokokoo.com>\n"
8
  "Language: English\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
readme.txt CHANGED
@@ -1,10 +1,9 @@
1
  === Plugin Name ===
2
- Contributors: marga satrya, tokokoo
3
- Donate link:
4
- Tags: recent posts, thumbnails, widget, widgets, sidebar
5
  Requires at least: 3.3
6
- Tested up to: 3.4.2
7
- Stable tag: 0.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -38,5 +37,8 @@ Please open issue on [github issue](https://github.com/tokokoo/recent-posts-widg
38
 
39
  == Changelog ==
40
 
 
 
 
41
  = 0.1 =
42
  * Initial release
1
  === Plugin Name ===
2
+ Contributors: tokokoo, satrya
3
+ Tags: recent posts, thumbnails, widget, widgets, sidebar, excerpt, transient api
 
4
  Requires at least: 3.3
5
+ Tested up to: 3.5
6
+ Stable tag: 0.2
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
37
 
38
  == Changelog ==
39
 
40
+ = 0.2 =
41
+ * Minor update
42
+
43
  = 0.1 =
44
  * Initial release
rpwe.php CHANGED
@@ -1,9 +1,9 @@
1
  <?php
2
  /*
3
  Plugin Name: Recent Posts Widget Extended
4
- Plugin URI: http://tokokoo.com
5
  Description: Enables recent posts widget with advanced settings.
6
- Version: 0.1
7
  Author: Marga Satrya
8
  Author URI: http://tokokoo.com
9
  Author Email: satrya@tokokoo.com
@@ -90,4 +90,5 @@ class RPW_Extended {
90
 
91
  new RPW_Extended;
92
 
93
- endif;
 
1
  <?php
2
  /*
3
  Plugin Name: Recent Posts Widget Extended
4
+ Plugin URI: http://wordpress.org/extend/plugins/recent-posts-widget-extended/
5
  Description: Enables recent posts widget with advanced settings.
6
+ Version: 0.2
7
  Author: Marga Satrya
8
  Author URI: http://tokokoo.com
9
  Author Email: satrya@tokokoo.com
90
 
91
  new RPW_Extended;
92
 
93
+ endif;
94
+ ?>