Responsive magic slider.
Author: | webvitaly (profile at wordpress.org) |
WordPress version required: | 4.0 |
WordPress version tested: | 5.5.3 |
Plugin version: | 1.3 |
Added to WordPress repository: | 09-09-2015 |
Last updated: | 05-09-2020
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
|
Rating, %: | 0 |
Rated by: | 0 |
Plugin URI: | http://wordpress.org/plugins/magic-slider/ |
Total downloads: | 1 848 |
Active installs: | 10+ |
Click to start download |
Magic Slider features:
- Responsive slider based on bxslider jQuery plugin
- Plugin has basic settings which can be overwritten via params
[magic_slider]
shortcode with paramsmagic_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 );
}
?>