Plugin Directory

Changeset 744658


Ignore:
Timestamp:
07/22/2013 11:02:06 PM (13 years ago)
Author:
VamsiTech
Message:

Updated Shortcode function to support full content display

Location:
jquery-vertical-scroller/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • jquery-vertical-scroller/trunk/readme.txt

    r690806 r744658  
    33Tags: widget, jQuery, vertical slider, velocity, direction, post scroller, Free scrolling news wordpress plugin, News plugin WordPress, Scrolling posts WordPress, Vertical posts, Vertical scrolling posts, WordPress dynamic posts, scroller, ticker, widget, Recent Posts scroller
    44Requires at least: 3.4
    5 Tested up to: 3.5
    6 Stable tag: 2.1
     5Tested up to: 3.5.2
     6Stable tag: 2.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    110110== Changelog ==
    111111
     112= 2.1 =
     113* Updated shortcode function to add excerpt and date
     114* Updated widget to add date
     115
    112116= 2.0 =
    113117* Added shortcode support
     
    130134== Upgrade Notice ==
    131135
    132 = 2.1 =
    133 * Updated shortcode function to add excerpt and date
    134 * Updated widget to add date
     136= 2.2 =
     137* Added full content support in shortcode
    135138* As usual, if you any hiccups, email us at info@sirisgraphics.com
  • jquery-vertical-scroller/trunk/sg-jqvs-widget-plugin.php

    r690806 r744658  
    346346            $content = $content . $theexcerpt;
    347347        }
     348        if ( $includecontent == 'content' ) {
     349            $theexcerpt = "<p>" . get_the_content() . "</p>";
     350            $content = $content . $theexcerpt;
     351        }
    348352        $content = $content . "</li>";
    349353    endforeach;
Note: See TracChangeset for help on using the changeset viewer.