Plugin Directory

Changeset 682530


Ignore:
Timestamp:
03/15/2013 05:50:15 PM (13 years ago)
Author:
iluminatus
Message:

Improvement, ellipsis are now displayed only when excerpt length exceeds the limit stablished through the excerpt_length parameter

Location:
single-latest-posts-lite/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • single-latest-posts-lite/trunk/core/classes/single-latest-posts-widget.php

    r682308 r682530  
    22/*
    33 * Single Latest Posts Lite Widget
    4  * Version 1.2.4
     4 * Version 1.2.5
    55 * Author L'Elite
    66 * Author URI http://laelite.info/
  • single-latest-posts-lite/trunk/readme.txt

    r682308 r682530  
    55Requires at least: 3.0
    66Tested up to: 3.5.1
    7 Stable tag: 1.2.4
     7Stable tag: 1.2.5
    88
    99This plugin allows you to pull all the recent posts from your WordPress blog and display them the way you want
     
    7676== Changelog ==
    7777
     78= 1.2.5 =
     79* Improvement: Ellipsis are now displayed only when excerpt length exceeds the limit specified through excerpt_length.
     80
    7881= 1.2.4 =
    7982* 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  
    22/*
    33 * Single Latest Posts Lite Configuration
    4  * Version: 1.2.4
     4 * Version: 1.2.5
    55 * Author: L'Elite
    66 * Author URI: http://laelite.info/
     
    2121define( 'SLPosts_Root', $slp_root, true );
    2222// Current Version
    23 define( 'SLPosts_Version', '1.2.4', true );
     23define( 'SLPosts_Version', '1.2.5', true );
    2424// Classes
    2525require_once dirname( __FILE__ ) . '/core/classes/single-latest-posts-widget.php';
  • single-latest-posts-lite/trunk/single-latest-posts.php

    r682308 r682530  
    44Plugin URI: http://wordpress.org/extend/plugins/single-latest-posts-lite/
    55Description: Display the latest posts available in your WordPress blog using functions, shortcodes or widgets.
    6 Version: 1.2.4
     6Version: 1.2.5
    77Author: L'Elite
    88Author URI: http://laelite.info/
     
    828828        // Pop off the rest
    829829        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    }
    833836    // Add white spaces
    834837    $content = implode(' ', $words);
Note: See TracChangeset for help on using the changeset viewer.