PATH:
home
/
letacommog
/
laindinois
/
wp-content
/
plugins
/
jscomposer
/
include
/
templates
/
shortcodes
<?php if ( ! defined( 'ABSPATH' ) ) { die( '-1' ); } /** * Shortcode attributes * @var $atts * @var $el_class * @var $posts_query * @var $mode * @var $speed * @var $slides_per_view * @var $wrap * @var $autoplay * @var $hide_pagination_control * @var $hide_prev_next_buttons * @var $layout * @var $link_target * @var $thumb_size * @var $partial_view * @var $title * Shortcode class * @var $this WPBakeryShortCode_Vc_Carousel */ $el_class = $posts_query = $mode = $speed = $slides_per_view = $wrap = $autoplay = $hide_pagination_control = $hide_prev_next_buttons = $layout = $link_target = $thumb_size = $partial_view = $title = ''; global $vc_teaser_box; $args = $my_query = ''; $posts = array(); $atts = vc_map_get_attributes( $this->getShortcode(), $atts ); extract( $atts ); global $vc_posts_grid_exclude_id; $vc_posts_grid_exclude_id[] = get_the_ID(); // fix recursive nesting if ( is_array( $posts_query ) ) { $posts_query['post_status'] = 'publish'; } else { $posts_query .= '|post_status:publish'; } list( $args, $my_query ) = vc_build_loop_query( $posts_query, get_the_ID() ); $teaser_blocks = vc_sorted_list_parse_value( $layout ); /** @var $my_query WP_Query */ while ( $my_query->have_posts() ) { $my_query->the_post(); // Get post from query if ( in_array( get_the_ID(), $vc_posts_grid_exclude_id ) ) { continue; } $post = new stdClass(); // Creating post object. $post->id = get_the_ID(); $post->link = get_permalink( $post->id ); $post->post_type = get_post_type(); if ( '1' === $vc_teaser_box->getTeaserData( 'enable', $post->id ) ) { $post->custom_user_teaser = true; $data = $vc_teaser_box->getTeaserData( 'data', $post->id ); if ( ! empty( $data ) ) { $data = json_decode( $data ); } $post->bgcolor = $vc_teaser_box->getTeaserData( 'bgcolor', $post->id ); $post->custom_teaser_blocks = array(); $post->title_attribute = the_title_attribute( 'echo=0' ); if ( ! empty( $data ) ) { foreach ( $data as $block ) { $settings = array(); if ( 'title' === $block->name ) { $post->title = the_title( '', '', false ); } elseif ( 'image' === $block->name ) { if ( 'featured' === $block->image ) { $post->thumbnail_data = $this->getPostThumbnail( $post->id, $thumb_size ); } elseif ( ! empty( $block->image ) ) { $post->thumbnail_data = wpb_getImageBySize( array( 'attach_id' => (int) $block->image, 'thumb_size' => $thumb_size, ) ); } else { $post->thumbnail_data = false; } $post->thumbnail = $post->thumbnail_data && isset( $post->thumbnail_data['thumbnail'] ) ? $post->thumbnail_data['thumbnail'] : ''; $post->image_link = empty( $video ) && $post->thumbnail && isset( $post->thumbnail_data['p_img_large'][0] ) ? $post->thumbnail_data['p_img_large'][0] : $video; } elseif ( 'text' === $block->name ) { if ( 'custom' === $block->mode ) { $settings[] = 'text'; $post->content = $block->text; } elseif ( 'excerpt' === $block->mode ) { $settings[] = $block->mode; $post->excerpt = $this->getPostExcerpt(); } else { $settings[] = $block->mode; $post->content = $this->getPostContent(); } } if ( isset( $block->link ) ) { if ( 'post' === $block->link ) { $settings[] = 'link_post'; } elseif ( 'big_image' === $block->link ) { $settings[] = 'link_image'; } else { $settings[] = 'no_link'; } $settings[] = ''; } $post->custom_teaser_blocks[] = array( $block->name, $settings ); } } } else { $post->custom_user_teaser = false; $post->title = the_title( '', '', false ); $post->title_attribute = the_title_attribute( 'echo=0' ); $post->post_type = get_post_type(); $post->content = $this->getPostContent(); $post->excerpt = $this->getPostExcerpt(); $post->thumbnail_data = $this->getPostThumbnail( $post->id, $thumb_size ); $post->thumbnail = $post->thumbnail_data && isset( $post->thumbnail_data['thumbnail'] ) ? $post->thumbnail_data['thumbnail'] : ''; $video = get_post_meta( $post->id, '_p_video', true ); $post->image_link = empty( $video ) && $post->thumbnail && isset( $post->thumbnail_data['p_img_large'][0] ) ? $post->thumbnail_data['p_img_large'][0] : $video; } $post->categories_css = $this->getCategoriesCss( $post->id ); $posts[] = $post; } wp_reset_query(); $this->setLinkTarget( $link_target ); wp_enqueue_script( 'vc_carousel_js' ); wp_enqueue_style( 'vc_carousel_css' ); $css_class = $this->settings['base'] . ' wpb_content_element vc_carousel_slider_' . $slides_per_view . ' vc_carousel_' . $mode . ( empty( $el_class ) ? '' : ' ' . $el_class ); $carousel_id = esc_attr( 'vc_carousel-' . WPBakeryShortCode_Vc_Carousel::getCarouselIndex() ); ?> <div class="<?php echo esc_attr( apply_filters( VC_SHORTCODE_CUSTOM_CSS_FILTER_TAG, $css_class, $this->settings['base'], $atts ) ) ?>"> <div class="wpb_wrapper"> <?php echo wpb_widget_title( array( 'title' => $title, 'extraclass' => 'wpb_gallery_heading' ) ) ?> <div id="<?php echo $carousel_id ?>" data-ride="vc_carousel" data-wrap="<?php echo 'yes' === $wrap ? 'true' : 'false' ?>" data-interval="<?php echo 'yes' === $autoplay ? $speed : 0 ?>" data-auto-height="true" data-mode="<?php echo $mode ?>" data-partial="<?php echo 'yes' === $partial_view ? 'true' : 'false' ?>" data-per-view="<?php echo $slides_per_view ?>" data-hide-on-end="<?php echo 'yes' === $autoplay ? 'false' : 'true' ?>" class="vc_carousel vc_slide"> <?php if ( 'yes' !== $hide_pagination_control ) : ?> <!-- Indicators --> <ol class="vc_carousel-indicators"> <?php for ( $i = 0; $i < count( $posts ); $i ++ ) : ?> <li data-target="#<?php echo $carousel_id ?>" data-slide-to="<?php echo $i ?>"></li> <?php endfor; ?> </ol> <?php endif ?> <!-- Wrapper for slides --> <div class="vc_carousel-inner"> <div class="vc_carousel-slideline"> <div class="vc_carousel-slideline-inner"> <?php foreach ( $posts as $post ) : ?> <?php $blocks_to_build = true === $post->custom_user_teaser ? $post->custom_teaser_blocks : $teaser_blocks; $block_style = isset( $post->bgcolor ) ? ' style="background-color: ' . $post->bgcolor . '"' : ''; ?> <div class="vc_item vc_slide_<?php echo $post->post_type ?>"<?php echo $block_style ?>> <div class="vc_inner"> <?php foreach ( $blocks_to_build as $block_data ) : ?> <?php include $this->getBlockTemplate() ?> <?php endforeach ?> </div> </div> <?php endforeach ?> </div> </div> </div> <?php if ( 'yes' !== $hide_prev_next_buttons ) : ?> <!-- Controls --> <a class="vc_left vc_carousel-control" href="#<?php echo $carousel_id ?>" data-slide="prev"> <span class="icon-prev"></span> </a> <a class="vc_right vc_carousel-control" href="#<?php echo $carousel_id ?>" data-slide="next"> <span class="icon-next"></span> </a> <?php endif ?> </div> </div> </div>
[+]
..
[-] vc_basic_grid_filter.php
[edit]
[-] vc_wp_search.php
[edit]
[-] vc_single_image.php
[edit]
[-] vc_column_text.php
[edit]
[-] vc_images_carousel.php
[edit]
[-] vc_wp_categories.php
[edit]
[-] vc_icon.php
[edit]
[-] vc_wp_archives.php
[edit]
[-] vc_row.php
[edit]
[-] vc_column_inner.php
[edit]
[-] vc_cta_button.php
[edit]
[-] vc_wp_tagcloud.php
[edit]
[-] vc_carousel.php
[edit]
[-] vc_message.php
[edit]
[-] vc_wp_text.php
[edit]
[-] vc_gmaps.php
[edit]
[-] vc_button.php
[edit]
[-] vc_posts_slider.php
[edit]
[-] vc_gallery.php
[edit]
[-] vc_gutenberg.php
[edit]
[-] vc_accordion.php
[edit]
[-] vc_tab.php
[edit]
[-] vc_gitem_col.php
[edit]
[-] vc_custom_heading.php
[edit]
[-] vc_posts_grid.php
[edit]
[-] vc_tweetmeme.php
[edit]
[-] vc_gitem_block.php
[edit]
[-] vc_flickr.php
[edit]
[-] rev_slider_vc.php
[edit]
[-] vc_wp_recentcomments.php
[edit]
[-] vc_toggle.php
[edit]
[-] vc_item.php
[edit]
[-] layerslider_vc.php
[edit]
[-] vc_pinterest.php
[edit]
[-] vc_gitem_post_author.php
[edit]
[-] vc_section.php
[edit]
[-] vc_wp_pages.php
[edit]
[-] vc_row_inner.php
[edit]
[-] vc_column.php
[edit]
[-] vc_tta_section.php
[edit]
[-] vc_gitem_post_meta.php
[edit]
[-] vc_cta_button2.php
[edit]
[-] vc_gitem_image.php
[edit]
[-] vc_googleplus.php
[edit]
[-] vc_video.php
[edit]
[-] vc_cta.php
[edit]
[-] vc_gitem_animated_block.php
[edit]
[-] vc_wp_custommenu.php
[edit]
[-] vc_wp_calendar.php
[edit]
[-] vc_items.php
[edit]
[-] vc_gitem_zone.php
[edit]
[-] vc_progress_bar.php
[edit]
[-] vc_pie.php
[edit]
[-] vc_gitem_zone_c.php
[edit]
[-] vc_wp_links.php
[edit]
[-] vc_zigzag.php
[edit]
[-] vc_empty_space.php
[edit]
[-] vc_text_separator.php
[edit]
[-] vc_gitem_post_data.php
[edit]
[-] vc_button2.php
[edit]
[-] vc_wp_posts.php
[edit]
[-] vc_widget_sidebar.php
[edit]
[-] vc_wp_rss.php
[edit]
[-] vc_gitem.php
[edit]
[-] vc_tta_pageable_section.php
[edit]
[-] vc_raw_html.php
[edit]
[-] vc_accordion_tab.php
[edit]
[-] vc_custom_field.php
[edit]
[-] vc_tta_global.php
[edit]
[-] vc_tabs.php
[edit]
[-] vc_line_chart.php
[edit]
[-] vc_gitem_row.php
[edit]
[+]
post_block
[-] vc_wp_meta.php
[edit]
[-] vc_facebook.php
[edit]
[-] vc_btn.php
[edit]
[-] vc_separator.php
[edit]
[-] vc_round_chart.php
[edit]
[-] vc_hoverbox.php
[edit]
[-] vc_gitem_post_categories.php
[edit]
[-] vc_basic_grid.php
[edit]