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. Pingback: My Favorite WordPress Plugins — Brian David O'Keefe
  2. Pingback: 15 steps to developing a school website using WordPress | Technoteaching
  3. Pingback: Behind the scenes: the plugins I use on theWorkpreneur.com
  4. Pingback: Top 10 Content Slider Plugins for WordPress › iTViet.vn News
  5. I installed this plugin. works great, exept that the navigation buttons do not appear!
    Someone any idea?

    1. which effect you are using. Fade effect don’t have navigation and text support.

  6. Mark Carter says:

    How do I adjust only the bottom border of the slide? It only gives option for all borders.

    1. Option added for full box border. You can not change specific border using options.

      If you want apply Bottom border then add following lines of code inside your themes style.css file

      #wpcontent_slider 
      {
        border-bottom:10px solid #000 !important;
      }
      

      Or you can apply different color borders for every border like

      #wpcontent_slider 
      {
        border-top:10px solid #000 !important;
        border-right:10px solid #000 !important;
        border-bottom:10px solid #000 !important;
        border-left:10px solid #000 !important;
      }
      

      change #000 with your color code.

  7. Sorry fade effect don’t have heading,text and navigation feature.

  8. EC Squared says:

    Hey,

    Thanx so much for the plug in, it works great thus far. Thank goodness for folks like you that make it very simple for people like me to find easy to understand help. I am just trying to center the slide on my page but I am not sure how. Also, if I want to have different slide shows on my site do i use the same plug in to do that? I want to use different pictures for each show. I was thinking of putting a slide in my header. I am using the autofocus theme.

    Peace and Love

  9. send me more details of your client website using my website’s contact me page.

  10. Hello, I just started using WP and I found your plugin and I love the ease of it. I do have one question how would I modify the php code to align the slide show to the middle of the page?