Skip to content

Instantly share code, notes, and snippets.

@raselahmed7
Created April 4, 2017 12:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raselahmed7/ba43d71a1a03f1160cd0dfe0e38ab0e2 to your computer and use it in GitHub Desktop.
Save raselahmed7/ba43d71a1a03f1160cd0dfe0e38ab0e2 to your computer and use it in GitHub Desktop.
<?php
if ( ! defined( 'ABSPATH' ) ) { exit; }
function educare_logo_carousel_shortcode( $atts, $content = null ) {
extract( shortcode_atts( array(
'logos' => '',
'count' => '6',
'tablet_count' => '4',
'mobile_count' => '2',
'arrows' => 'true',
'dots' => 'false',
'autoplay' => 'true',
'autoplay_time' => '5000',
), $atts ) );
$images_m = explode(',', $logos);
$educare_logos_random_id = rand(32987, 54972);
$logo_carousel_markup = '
<script>
jQuery(document).ready(function($){
$("#educare-logo-carousel-'.esc_attr($educare_logos_random_id).'").owlCarousel({
loop: true,
autoplay: '.esc_attr($autoplay).',
dots: '.esc_attr($dots).',
nav: '.esc_attr($arrows).',
margin: 30,
navText: ["<i class=\'fa fa-angle-left\'></i>", "<i class=\'fa fa-angle-right\'></i>"],
autoplayTimeout: '.esc_attr($autoplay_time).',
responsive:{
0:{
items: '.esc_attr($mobile_count).',
},
600:{
items: '.esc_attr($tablet_count).',
},
1000:{
items: '.esc_attr($count).',
}
}
});
});
</script>
<div class="educare-logo-carousel" id="educare-logo-carousel-'.esc_attr($educare_logos_random_id).'">';
foreach($images_m as $logo) {
$logo_carousel_markup .='<img src="'.esc_url(wp_get_attachment_image_src($logo, 'medium')[0]).'" alt=""/>';
}
$logo_carousel_markup .= '</div>';
return $logo_carousel_markup;
}
add_shortcode('educare_logo_carousel', 'educare_logo_carousel_shortcode');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment