WordPress Content Slide Plugin
Thanks for downloading one of my plugins. If you like my plugins, please support me by donating a small amount through PayPal.
If you want to insert multiple sliders on same page then use my new plugin
[button link=”https://snilesh.com/blog/resources/wordpress/wordpress-gallery-plugin/” title=”Wordpress Gallery Plugin” type=”info”]Wordpress Gallery Plugin[/button]
Demo
[button link=”https://snilesh.com/blog/wordpress-content-slide-plugin/” title=”Wordpress Content Slide Plugin” type=”info”]Demo 1[/button]
Download
[button link=”https://wordpress.org/extend/plugins/content-slide/” title=”Wordpress Content Slide Plugin” type=”success”]Download[/button]
New Features
1] Custom Image support. So you can create slider without using posts.
2] Added New Effects Swirl,Rain,Fade
3] Added styles like border,background,font-family,font-size for headings and text.
Installation
1. Download the zipped plugin file to your local machine.
2. Unzip the file.
3. Upload the “content-slide” folder to the “/wp-content/plugins/” directory. (DO NOT CHANGE ANY FILE OR FOLDER NAMES)
4. Activate the plugin through the “Plugins” menu in WordPress.
5. Click on Content slide in your wordpress dashboard and configure content slide plugin options.
You can directly install wordpress content slide plugin from your websites admin plugin section.
Add PHP code
To display WordPress content slide on your website you have to add following lines of code inside your themes .php files.
<?php if(function_exists('wp_content_slider')) { wp_content_slider(); } ?>
Example if you want to display this slider in your header then you have to edit the header.php file. Just open header.php from your current theme in any editor and add
<?php if(function_exists('wp_content_slider')) { wp_content_slider(); } ?>
lines at the location where you want to display the slider.
Slider Only On Home Page
In some cases you just want to display slider only on the home page in this case you have selected a page as home page from the settings->reading section.
And if your home page is using default page template then you have to add following lines of code in your page.php at the location where you want to display the slider.
<?php if(is_front_page()) { if(function_exists('wp_content_slider')) { wp_content_slider(); } } ?>
Using above code the slider will be displayed only on home page.
Slider on a Specific page
If you want to display slider on a specific page say ‘about’ then you have to use wordpress conditional tags
<?php if(is_page('about')) { if(function_exists('wp_content_slider')) { wp_content_slider(); } } ?>
Demo
[button]Demo[/button]
Download
[button type=”success” title=”Download” link=”https://wordpress.org/extend/plugins/content-slide/”]Download[/button]
Support
You can support this plugin by giving ratings on wordpress website.
Give Rating at WordPress Content Slide.
Also You can help translating this plugin in different languages.
If you use this plugin on your website hosted on a dedicated server, just send your website url. All the links will be displayed on this Page.
If you like my plugins, please support.
This plugin is awesome, keep up the good work!
Thanks a lot!
When using custom images for the slider,is there a way to make the image link open in a new window?
can you show me your website url where you installed my plugin.
Hey, fantastic plugin! Really love it, appreciate that your work immensely.
Question: How do I create a different slideshow for a different page? I’ve got my php in specific static pages, and want different images for each gallery. Not sure how to do that..Sorry if I’m missing something extremely obvious!
different slideshow not possible with this plugin.
As a side note, I wanted it only on my home page, but in the header, so I took your homepage code, and plugged it into my header file and it shows up only on my header now. That is exactly what I wanted. Very simple, awesome instructions and great module! Thanks!
Shane
Great plugin. Thanks…
But (you knew there was a but coming right?) I’m having a problem changing the image display time when using ‘fade’… It always seems to take around 6-7 seconds between fades – no matter what changes I save in:
Delay between images in ms
(I have tried other browsers and refreshed eveything)
Any ideas?
thanks
Hi,
I love your WP Content Slide plugin!
… and I see “Angela” already have asked – and gotten an answer, on what I planned to ask… 😉
All sorted now thanks… It was a permissions issue on the server. thanks again.
Awesome plug-in bro , its the best I could find for my wordpress site. But I have a suggestion I recently had stumbled upon this(www.omgubuntu.co.uk) cool web-magazine site, and I was really amazed by its slideshow style, its got a cool fade effect and the timing somehow is synchronized with the line that fills in after each slide. If you could implement this in your plugin it would be awesome.
Hi there, is it possible to use the plugin twice on the same page, with different images? Say for example on 2 banner sections.
Thanks in advance.