0byt3m1n1
Path:
/
var
/
lib
/
vz
/
www
/
clients
/
client6
/
web11
/
web
/
wp-content
/
themes
/
virtue
/
templates
/
[
Home
]
File: flex-slider.php
<?php global $post; $height = get_post_meta( $post->ID, '_kad_posthead_height', true ); $swidth = get_post_meta( $post->ID, '_kad_posthead_width', true ); if ( ! empty( $height ) ) { $slideheight = $height; } else { $slideheight = 400; } if ( ! empty( $swidth ) ) { $slidewidth = $swidth; } else { $slidewidth = 1140; } ?> <section class="pagefeat container"> <div class="flexslider loading kt-flexslider" style="max-width:<?php echo esc_attr( $slidewidth );?>px;" data-flex-speed="7000" data-flex-anim-speed="400" data-flex-animation="fade" data-flex-auto="true"> <ul class="slides"> <?php $image_gallery = get_post_meta( $post->ID, '_kad_image_gallery', true ); if ( ! empty( $image_gallery ) ) { $attachments = array_filter( explode( ',', $image_gallery ) ); if ( $attachments ) { foreach ( $attachments as $attachment ) { echo '<li>'; echo virtue_get_full_image_output($slidewidth, $slideheight, true, null, null, $attachment); echo '</li>'; } } } else { $attach_args = array('order'=> 'ASC','post_type'=> 'attachment','post_parent'=> $post->ID,'post_mime_type' => 'image','post_status'=> null,'orderby'=> 'menu_order','numberposts'=> -1); $attachments = get_posts($attach_args); if ( $attachments ) { foreach ($attachments as $attachment) { echo '<li>'; echo virtue_get_full_image_output($slidewidth, $slideheight, true, null, null, $attachment->ID); echo '</li>'; } } } ?> </ul> </div> <!--Flex Slides--> </section>