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.

Leave a Reply

Your email address will not be published. Required fields are marked *

550 Comments

  1. yes resize feature is not available with the current version. I will make sure to add it in next version.

  2. image resize feature is not available with current version. i will make sure to add it in next version.

  3. you have change CSS as this is a issue with z-index css property.

  4. not possible with current version. i am working on the new version.

  5. Hi
    The way I did it was this. Download Executable PHP widget and place it as a widget anywhere on your site – place the php code for the slider into it and that’s it – it will appear anywhere you wish.

  6. Any way to add a hyperlink into the image text box? If possible this would be most helpful!

  7. Hi Nilesh,

    I would like to change the background color of the navigation arrows. Where does the CSS file install where I can make the change?

    Thank you for a great plugin!

  8. Great slideshow, but can you tell me how to center it on the page?

    Many thanks

    Martin

  9. Hi Nilesh, me again! Just to be clear, what i want to do is have the slideshow in my header and positioned centrally on the page and 117px from the top, How do I achieve this, i’ve tried a few things using firebug but I’m a bit of a novice and can’t find anything that works, if you can help that would be brilliant, and i’ll surely make a donation to buy you a coffee or two.

    Cheers

    1. send me your wp-admin login details through my website’s contact me page…

      1. Hey, thanks for getting back to me, but in the end I managed to figure out how to align the slideshow in the centre and down from the top by adding the following:

        margin-left: auto; margin-right:auto; position:relative; top:117px;

        at the end of the content_slide.php file where it says:

        #wpcontent_slider_container
        {
        overflow: hidden; position: relative; padding:0px;margin:0px; text-align:center; width:px !important;
        /* fix all content flash by setting height of container*/ height:px !important;
        }

        (I’ve written it out in full in case it can help any other noobies like me!)

        Thanks again