Magic Slider

Magic Slider Install Statistics

0
100%
Today: 0 Yesterday: 0 All-time: 1,749 downloads
Magic Slider Icon

Try plugin: Magic Slider

We'll create fresh WordPress site with Magic Slider installed. You have 20 minutes to test the plugin after that site we'll be deleted.

Takes ~10 seconds to install.

About Magic Slider

Responsive and flexible slider.

0


0


0


0


0

updated: 4 years ago
since: 9 years ago
author: webvitaly

Description

Magic Slider features:

  • Responsive slider based on bxslider jQuery plugin
  • Plugin has basic settings which can be overwritten via params
  • [magic_slider] shortcode with params
  • magic_slider_output() php function with params

Shortcode usage:

[magic_slider height="400" category="24" mode="fade" speed="500" auto="1" pause="4000" pager="1"]

PHP usage:

<?php
$magic_slider_settings = array(
    'height' => 400,
    'category' => 24,
    'mode' => 'fade',
    'speed' => 500,
    'auto' => 1,
    'pause' => 4000,
    'pager' => 1
);
if (function_exists('magic_slider_output')) {
    echo magic_slider_output( $magic_slider_settings );
}
?>