Changeset 997699
- Timestamp:
- 09/27/2014 04:40:18 PM (12 years ago)
- Location:
- jquery-vertical-scroller
- Files:
-
- 19 added
- 3 edited
-
tags/2.7 (added)
-
tags/2.7/assets (added)
-
tags/2.7/assets/screenshot-1.png (added)
-
tags/2.7/assets/screenshot-2.png (added)
-
tags/2.7/assets/screenshot-3.png (added)
-
tags/2.7/assets/screenshot-4.png (added)
-
tags/2.7/languages (added)
-
tags/2.7/languages/it.mo (added)
-
tags/2.7/languages/it.po (added)
-
tags/2.7/languages/sg-jqvs-it_IT.mo (added)
-
tags/2.7/languages/sg-jqvs-it_IT.po (added)
-
tags/2.7/languages/sg-jqvs-sr_RS.mo (added)
-
tags/2.7/languages/sg-jqvs-sr_RS.po (added)
-
tags/2.7/license.txt (added)
-
tags/2.7/readme.txt (added)
-
tags/2.7/scripts (added)
-
tags/2.7/scripts/jquery-scroller-v1.min.js (added)
-
tags/2.7/sg-jqvs-widget-plugin.php (added)
-
tags/2.7/sgjvs_stylesheet.css (added)
-
trunk/readme.txt (modified) (4 diffs)
-
trunk/sg-jqvs-widget-plugin.php (modified) (3 diffs)
-
trunk/sgjvs_stylesheet.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
jquery-vertical-scroller/trunk/readme.txt
r983957 r997699 4 4 Requires at least: 3.4 5 5 Tested up to: 4.0 6 Stable tag: 2. 76 Stable tag: 2.8 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 46 46 47 47 = Shortcode = 48 <b>Usage:</b> [sgvscroller postcount="5" category="1" posttype="post" width="250px" height="200px" startfrom="bottom" includecontent="excerpt" showdate="true" showdateformat="F, Y"]48 <b>Usage:</b> [sgvscroller postcount="5" sortby="post_date" sortorder="DESC" category="1" posttype="post" width="250px" height="200px" startfrom="bottom" includecontent="excerpt" showdate="true" showdateformat="F, Y"] 49 49 50 50 postcount (optional, default value = 5): Sets the number of posts displayed by the scroller. Usage: postcount="5". 51 52 sortby (optional, default value = post_date): Set the Order By option for getting posts. 53 Valid Values: 'none' - No order (available with Version 2.8). 54 'ID' - Order by post id. Note the capitalization. 55 'author' - Order by author. 56 'title' - Order by title. 57 'date' - Order by date. 58 'modified' - Order by last modified date. 59 'parent' - Order by post/page parent id. 60 'rand' - Random order. 61 'comment_count' - Order by number of comments (available with Version 2.9). 62 Usage: sortby="post_date" 63 64 sortorder (optional, default value = DESC): Sorts the posts in ascending or descending order of post date. Usage: sortorder="ASC" or "DESC" 51 65 52 66 category (optional, default value = 1): Sets the category to be displayed by the scroller. Usage: category="1". … … 118 132 == Changelog == 119 133 134 = 2.7 = 135 * Tested with Wordpress Version 4.0 136 137 = 2.6 = 138 * Tested with Wordpress Version 3.9.1 139 120 140 = 2.5 = 121 141 * Tested with Wordpress Version 3.8 … … 158 178 == Upgrade Notice == 159 179 160 = 2. 6=161 * Tested with Wordpress Version 3.9.1180 = 2.8 = 181 * Adding Sorting option to Shortcode 162 182 * As usual, if you any hiccups, email us at info@sirisgraphics.com -
jquery-vertical-scroller/trunk/sg-jqvs-widget-plugin.php
r983957 r997699 4 4 Plugin URI: http://sirisgraphics.com/development/jquery-vertical-scroller-2-0 5 5 Description: A plugin to add a widget to scroll posts in your sidebar or footer widgets for WordPress powered by jQuery 6 Version: 2. 76 Version: 2.8 7 7 Author: Vamsi Pulavarthi 8 8 Author URI: http://sirisgraphics.com/ … … 371 371 "category" => '1', 372 372 "posttype" => 'post', 373 "sort" => 'post_date', 374 "sortorder" => 'DESC', 373 375 "width" => '250px', 374 376 "height" => '200px', … … 387 389 'numberposts' => $postcount, 388 390 'category' => $category, 389 'orderby' => 'post_date',390 'order' => 'DESC',391 'orderby' => $sort, 392 'order' => $sortorder, 391 393 'post_type' => $posttype, 392 394 'post_status' => 'publish', -
jquery-vertical-scroller/trunk/sgjvs_stylesheet.css
r983957 r997699 3 3 Plugin URI: http://sirisgraphics.com/development/jquery-vertical-scroller-2-0 4 4 Description: A plugin to add a widget to scroll posts in your sidebar or footer widgets for WordPress powered by jQuery 5 Version: 2. 75 Version: 2.8 6 6 Author: Vamsi Pulavarthi 7 7 Author URI: http://sirisgraphics.com/
Note: See TracChangeset
for help on using the changeset viewer.