By : castlecode Published On Monday, May 06, 2013, 19:49 In WordPress
This is a plugin that scans a folder containing images in your Wordpress and creates a Slider with the images. You only need to drag and drop images into that folder and thats it, just put the shortocode where you want to show the slider:
[smartSlider]
Note: The live preview is using the Javascript version of the slider so you can play better with the effects, but if you wanna see it in action in a real Wordpress page you can see it here
If your images are in another server or you just want to add them manually just set the directory parameter to none and add them to the shortcode like this:
[smartSlider directory="none"]
<img src='url.png' data-effect='boxesDiagonal' data-captioneffect='fade' data-caption="hi there" />
<img src='url.png' data-effect='boxesDiagonal' data-captioneffect='fade' data-caption="hi there" />
<img src='url.png' data-effect='boxesDiagonal' data-captioneffect='fade' data-caption="hi there" />
[/smartSlider]
You need to specify the transition effects for the images and the captions manually as well.
Then just add few images manually and it will read the folder of images (specified in the admin page) and also the few images that you add to the shortcode.
For example:
[smartSlider]
<img src='url.png' data-effect='boxesDiagonal' data-captioneffect='fade' data-caption="hi there" />
<img src='url.png' data-effect='boxesDiagonal' data-captioneffect='fade' data-caption="hi there" />
<img src='url.png' data-effect='boxesDiagonal' data-captioneffect='fade' data-caption="hi there" />
[/smartSlider]
You can customize a single slider with some parameters, here are all the parameters available:
[smartSlider directory="images2" effects="boxesDiagonal,zoomOut" caption="fade,zoomOut" theme="theme2"]