Changeset 1515982
- Timestamp:
- 10/16/2016 04:59:41 PM (9 years ago)
- Location:
- testimonial-slider-shortcode/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (3 diffs)
-
testimonial-slider-shortcode.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
testimonial-slider-shortcode/trunk/readme.txt
r1515977 r1515982 7 7 Requires at least: 4 8 8 Tested up to: 4.6 9 Stable tag: 1.1. 19 Stable tag: 1.1.2 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html 12 12 13 A lightweight Testimonial Slideshow plugin for WordPress. It lets you create a 14 15 beautiful responsive Testimonial Slideshow. 13 A lightweight Testimonial Slideshow plugin for WordPress. It lets you create a beautiful responsive Testimonial Slideshow. 16 14 17 15 == Description == 18 16 19 Using this plugin you can add a interactive Testimonial slider to any page or 20 21 post. This plugin offer a shortcode to create Slideshow. It is fully responsive 22 23 and looks good in any device. 17 Using this plugin you can add a interactive Testimonial slider to any page or post. This plugin offer a shortcode to create Slideshow. It is fully responsive and looks good in any device. 24 18 25 19 This plugin using a jquery plugin [Owl Carousel](http://www.owlcarousel.owlgraphic.com/) by Owlgraphic. 26 20 27 21 = Shortcode Example = 22 ` 23 [tss_testimonial_slider align="center" padding="0 40px" loop="1" autoplay="1" dots="1" nav="1" class=""] 24 [tss_item text="Abelson has been an amazing firm to work with. Lorem changed the company." name=" JOHN SAMPSON, LEONARD GREEN & PARTNERS, LP" link="#"/] 25 [tss_item text="2222 Abelson has been an amazing firm to work with. Lorem changed the company." name=" JOHN SAMPSON, LEONARD GREEN & PARTNERS, LP" link=""/] 26 [tss_item text="333 Abelson has been an amazing firm to work with. Lorem changed the company." name=" JOHN SAMPSON, LEONARD GREEN & PARTNERS, LP" link=""/] 27 [/tss_testimonial_slider] 28 ` 29 = So what are the arguments of the main shortcode? = 30 **align** you can sent the slider alignment here, support values are `left`, `right` or `center` 31 **padding** Possible value is pure CSS. Example `0 40px` 32 **loop** Enable or disable loop by adding `0` or `1` 33 **autoplay** Enable or disable autoplay by adding `0` or `1` 34 **dots** Enable or disable dot nav by adding `0` or `1` 35 **nav** Enable or disable left right arrow nav by adding `0` or `1` 28 36 37 38 = So what are the arguments of the Sub shortcode? = 39 **text** this is the text of the slider item 40 **name** name of the testimonial author 41 **link** full link 42 43 44 == Installation == 45 46 1. Upload `testimonial-slider-shortcode` to the `/wp-content/plugins/` directory 47 1. Activate the plugin through the 'Plugins' menu in WordPress 48 49 == Frequently Asked Questions == 50 51 = What is the Shortcode? = 52 53 Below is the example of the shoercode. 29 54 ` 30 [tss_testimonial_slider ]55 [tss_testimonial_slider align="center" padding="0 40px" loop="1" autoplay="1" dots="1" nav="1" class=""] 31 56 [tss_item text="Abelson has been an amazing firm to work with. Lorem changed the company." name=" JOHN SAMPSON, LEONARD GREEN & PARTNERS, LP" link="#"/] 32 57 [tss_item text="2222 Abelson has been an amazing firm to work with. Lorem changed the company." name=" JOHN SAMPSON, LEONARD GREEN & PARTNERS, LP" link=""/] … … 35 60 ` 36 61 37 == Installation == 62 = So what are the arguments of the main shortcode? = 63 **align** you can sent the slider alignment here, support values are `left`, `right` or `center` 64 **padding** Possible value is pure CSS. Example `0 40px` 65 **loop** Enable or disable loop by adding `0` or `1` 66 **autoplay** Enable or disable autoplay by adding `0` or `1` 67 **dots** Enable or disable dot nav by adding `0` or `1` 68 **nav** Enable or disable left right arrow nav by adding `0` or `1` 38 69 39 1. Upload `plugin-name.php` to the `/wp-content/plugins/` directory40 1. Activate the plugin through the 'Plugins' menu in WordPress41 70 42 == Frequently Asked Questions == 43 44 = What is the Shortcode and How to add zoom effect to a Image? = 45 46 Below is the example of the shoercode. 47 ` 48 [tss_testimonial_slider] 49 [tss_item text="Abelson has been an amazing firm to work with. Lorem changed the company." name=" JOHN SAMPSON, LEONARD GREEN & PARTNERS, LP" link="#"/] 50 [tss_item text="2222 Abelson has been an amazing firm to work with. Lorem changed the company." name=" JOHN SAMPSON, LEONARD GREEN & PARTNERS, LP" link=""/] 51 [tss_item text="333 Abelson has been an amazing firm to work with. Lorem changed the company." name=" JOHN SAMPSON, LEONARD GREEN & PARTNERS, LP" link=""/] 52 [/tss_testimonial_slider] 53 ` 71 = So what are the arguments of the Sub shortcode? = 72 **text** this is the text of the slider item 73 **name** name of the testimonial author 74 **link** full link 54 75 55 76 … … 63 84 == Changelog == 64 85 86 = 1.1.2 = 87 * Fixed some readme.txt issue 88 89 = 1.1.1 = 90 * Fixed a readme.txt issue 91 65 92 = 1.1 = 66 93 * Added Center, left and right alignment support -
testimonial-slider-shortcode/trunk/testimonial-slider-shortcode.php
r1515977 r1515982 2 2 /** 3 3 * @package testimonial-slider-shortcode 4 * @version 1.1. 14 * @version 1.1.2 5 5 */ 6 6 /* … … 9 9 Description: <strong>Testimonial Slider Shortcode</strong> is a lightweight Testimonial Slideshow plugin for WordPress. It lets you create a beautiful responsive Testimonial Slideshow. 10 10 Author: Sazzad Hu 11 Version: 1.1. 111 Version: 1.1.2 12 12 Author URI: http://sazzadh.com/ 13 13
Note: See TracChangeset
for help on using the changeset viewer.