Changeset 682530
- Timestamp:
- 03/15/2013 05:50:15 PM (13 years ago)
- Location:
- single-latest-posts-lite/trunk
- Files:
-
- 4 edited
-
core/classes/single-latest-posts-widget.php (modified) (1 diff)
-
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
r682308 r682530 2 2 /* 3 3 * Single Latest Posts Lite Widget 4 * Version 1.2. 44 * Version 1.2.5 5 5 * Author L'Elite 6 6 * Author URI http://laelite.info/ -
single-latest-posts-lite/trunk/readme.txt
r682308 r682530 5 5 Requires at least: 3.0 6 6 Tested up to: 3.5.1 7 Stable tag: 1.2. 47 Stable tag: 1.2.5 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.5 = 79 * Improvement: Ellipsis are now displayed only when excerpt length exceeds the limit specified through excerpt_length. 80 78 81 = 1.2.4 = 79 82 * Improvement: now when using auto_excerpt=true, excerpts will be generated only for posts without one. -
single-latest-posts-lite/trunk/single-latest-posts-config.php
r682308 r682530 2 2 /* 3 3 * Single Latest Posts Lite Configuration 4 * Version: 1.2. 44 * Version: 1.2.5 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. 4', true );23 define( 'SLPosts_Version', '1.2.5', 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
r682308 r682530 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. 46 Version: 1.2.5 7 7 Author: L'Elite 8 8 Author URI: http://laelite.info/ … … 828 828 // Pop off the rest 829 829 array_pop($words); 830 } 831 // Add trailing dots 832 array_push($words, '...'); 830 // Add ellipsis 831 array_push($words, '...'); 832 } else { 833 // Add a blank space 834 array_push($words, ' '); 835 } 833 836 // Add white spaces 834 837 $content = implode(' ', $words);
Note: See TracChangeset
for help on using the changeset viewer.