Changeset 674772
- Timestamp:
- 02/28/2013 09:51:43 PM (13 years ago)
- Location:
- single-latest-posts-lite/trunk
- Files:
-
- 4 edited
-
core/classes/single-latest-posts-widget.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
single-latest-posts-config.php (modified) (2 diffs)
-
single-latest-posts.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
single-latest-posts-lite/trunk/core/classes/single-latest-posts-widget.php
r620293 r674772 2 2 /* 3 3 * Single Latest Posts Lite Widget 4 * Version 1. 04 * Version 1.2.2 5 5 * Author L'Elite 6 6 * Author URI http://laelite.info/ … … 170 170 $status_list = $wpdb->get_results("SELECT DISTINCT post_status FROM $wpdb->posts"); 171 171 $type_list = $wpdb->get_col("SELECT DISTINCT post_type FROM $wpdb->posts"); 172 $thumbnail_w = 150;173 $thumbnail_h = 150;174 172 // Parse & Merge the passed values with the default ones 175 173 $instance = wp_parse_args( $instance, $this->defaults ); -
single-latest-posts-lite/trunk/readme.txt
r648570 r674772 5 5 Requires at least: 3.0 6 6 Tested up to: 3.5 7 Stable tag: 1.2. 17 Stable tag: 1.2.2 8 8 9 9 This plugin allows you to pull all the recent posts from your WordPress blog and display them the way you want … … 76 76 == Changelog == 77 77 78 = 1.2.2 = 79 * Bug fix: widget thumbnail size was being reset by default data. 80 78 81 = 1.2.1 = 79 82 * HTML improvement to simplify visual customization -
single-latest-posts-lite/trunk/single-latest-posts-config.php
r648570 r674772 2 2 /* 3 3 * Single Latest Posts Lite Configuration 4 * Version: 1. 04 * Version: 1.2.2 5 5 * Author: L'Elite 6 6 * Author URI: http://laelite.info/ … … 21 21 define( 'SLPosts_Root', $slp_root, true ); 22 22 // Current Version 23 define( 'SLPosts_Version', '1.2. 1', true );23 define( 'SLPosts_Version', '1.2.2', true ); 24 24 // Classes 25 25 require_once dirname( __FILE__ ) . '/core/classes/single-latest-posts-widget.php'; -
single-latest-posts-lite/trunk/single-latest-posts.php
r648570 r674772 4 4 Plugin URI: http://wordpress.org/extend/plugins/single-latest-posts-lite/ 5 5 Description: Display the latest posts available in your WordPress blog using functions, shortcodes or widgets. 6 Version: 1.2. 16 Version: 1.2.2 7 7 Author: L'Elite 8 8 Author URI: http://laelite.info/ … … 457 457 $total += 1; 458 458 } 459 echo "<script>console.log('".count($pages)."')</script>"; 459 460 // Open pagination wrapper 460 461 echo $html_tags['pagination_o'];
Note: See TracChangeset
for help on using the changeset viewer.