Version Description
- WordPress 3.5 compatibility
- Upload header image
- Sanitize
get_the_title
function
Download this release
Release Info
Developer | satrya |
Plugin | Recent Posts Widget Extended |
Version | 0.3 |
Comparing to | |
See all releases |
Code changes from version 0.2 to 0.3
- includes/widget-recent-posts-extended.php +1 -1
- readme.txt +6 -1
- rpwe.php +1 -1
includes/widget-recent-posts-extended.php
CHANGED
@@ -71,7 +71,7 @@ class rpwe_widget extends WP_Widget {
|
|
71 |
<li class="rpwe-clearfix">
|
72 |
|
73 |
<a href="<?php esc_url( the_permalink() ); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'rpwe' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark">
|
74 |
-
<?php if( has_post_thumbnail() && $thumb == true ) the_post_thumbnail( array( $thumb_height, $thumb_width ), array( 'class' => 'rpwe-alignleft', 'alt' => get_the_title(), 'title' => get_the_title() ) ); ?>
|
75 |
<h3 class="rpwe-title"><?php esc_attr( the_title() ); ?></h3>
|
76 |
</a>
|
77 |
|
71 |
<li class="rpwe-clearfix">
|
72 |
|
73 |
<a href="<?php esc_url( the_permalink() ); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'rpwe' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark">
|
74 |
+
<?php if( has_post_thumbnail() && $thumb == true ) the_post_thumbnail( array( $thumb_height, $thumb_width ), array( 'class' => 'rpwe-alignleft', 'alt' => esc_attr( get_the_title() ), 'title' => esc_attr( get_the_title() ) ) ); ?>
|
75 |
<h3 class="rpwe-title"><?php esc_attr( the_title() ); ?></h3>
|
76 |
</a>
|
77 |
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ 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.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -37,6 +37,11 @@ Please open issue on [github issue](https://github.com/tokokoo/recent-posts-widg
|
|
37 |
|
38 |
== Changelog ==
|
39 |
|
|
|
|
|
|
|
|
|
|
|
40 |
= 0.2 =
|
41 |
* Minor update
|
42 |
|
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.3
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
37 |
|
38 |
== Changelog ==
|
39 |
|
40 |
+
= 0.3 =
|
41 |
+
* WordPress 3.5 compatibility
|
42 |
+
* Upload header image
|
43 |
+
* Sanitize `get_the_title` function
|
44 |
+
|
45 |
= 0.2 =
|
46 |
* Minor update
|
47 |
|
rpwe.php
CHANGED
@@ -3,7 +3,7 @@
|
|
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.
|
7 |
Author: Marga Satrya
|
8 |
Author URI: http://tokokoo.com
|
9 |
Author Email: satrya@tokokoo.com
|
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.3
|
7 |
Author: Marga Satrya
|
8 |
Author URI: http://tokokoo.com
|
9 |
Author Email: satrya@tokokoo.com
|