Last active
January 11, 2017 19:39
-
-
Save kaweski/57d95e9c4fe7552542a1e6096ba91b07 to your computer and use it in GitHub Desktop.
Slider::POO
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$args = array( | |
'post_id' => 2, | |
'query_results' => $posts_data, | |
// 'component' => 'component-clients-01', | |
'component' => get_template_directory() . '/component-clients-01.php', | |
'external_component' => true, | |
'show_link_buttom' => 'Ver mais', | |
'slick_slider_to_show' => 3, | |
'slick_slider_to_scroll' => 1, | |
'slick_slider_center_mode' => false, | |
'slick_slider_infinite' => true, | |
'slick_slider_fade' => false, | |
'slick_slider_auto' => false, | |
'slick_slider_dots' => true, | |
'slick_slider_adaptative_height' => true, | |
'slick_slider_speed' => 10000, | |
'slick_slider_bg_image' => false, | |
'slick_slider_bg_height' => '800px', | |
'slick_slider_mobile_image' => false, | |
'thumbnail_size' => 'thumb-product', | |
); | |
Slider_Views::show_slider( $args ); ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Slider Modeo 02 --> | |
<?php | |
// Carregando um slider com uma query customizada | |
$my_posts_results = get_posts( array('post_type' => 'qdwp_type_gallery', 'numberposts' => 8 ); | |
$args = array( | |
'post_id' => null, | |
'query_results' => $my_posts_results, | |
'component' => 'component-post-01', | |
'external_component' => false, | |
'show_link_buttom' => 'Ver mais', | |
'slick_slider_to_show' => 4, | |
'slick_slider_to_scroll' => 1, | |
'slick_slider_center_mode' => false, | |
'slick_slider_infinite' => false, | |
'slick_slider_fade' => false, | |
'slick_slider_auto' => false, | |
'slick_slider_dots' => false, | |
'slick_slider_adaptative_height' => false, | |
'slick_slider_speed' => 10000, | |
'slick_slider_bg_image' => false, | |
'slick_slider_bg_height' => '800px', | |
'slick_slider_mobile_image' => false, | |
'thumbnail_size' => 'full', | |
); | |
Slider_Views::show_slider( $args ); ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Slider Modo 01 --> | |
<?php | |
// Carregando um slider padrão | |
$args = array( 'post_id' => 64 ); | |
Slider_Views::show_slider( $args ); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment