BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
www
/
CTR
/
wp-content
/
plugins
/
porto-functionality
/
shortcodes
/
templates
📤 Upload
📝 New File
📁 New Folder
Close
Editing: porto_recent_posts.php
<?php $output = $title = $view = $author = $btn_style = $btn_size = $btn_color = $image_size = $number = $cat = $cats = $show_metas = $show_image = $excerpt_length = $items_desktop = $items_tablets = $items_mobile = $items_row = $slider_config = $show_nav = $show_nav_hover = $nav_pos = $nav_type = $show_dots = $animation_type = $animation_duration = $animation_delay = $el_class = ''; extract( shortcode_atts( array( 'title' => '', 'view' => '', 'author' => '', 'btn_style' => '', 'btn_size' => '', 'btn_color' => '', 'image_size' => '', 'number' => 8, 'cats' => '', 'cat' => '', 'show_metas' => true, 'show_image' => true, 'excerpt_length' => 20, 'spacing' => '', 'items' => '', 'items_desktop' => 4, 'items_tablets' => 3, 'items_mobile' => 2, 'items_row' => 1, 'slider_config' => false, 'enable_flick' => false, 'show_nav' => false, 'show_nav_hover' => false, 'nav_pos' => '', 'nav_type' => '', 'show_dots' => false, 'dots_pos' => '', 'dots_style' => '', 'animation_type' => '', 'animation_duration' => 1000, 'animation_delay' => 0, 'animation_reveal_clr' => '', 'set_loop' => '', 'el_class' => '', 'className' => '', ), $atts ) ); global $porto_settings; $carousel_class = ' has-ccols ccols-1'; if ( ! empty( $items ) ) { $carousel_class .= ' ccols-xl-' . (int) $items; } if ( $items_desktop ) { $carousel_class .= ' ccols-lg-' . (int) $items_desktop; } if ( $items_tablets ) { $carousel_class .= ' ccols-md-' . (int) $items_tablets; } if ( $items_mobile ) { $carousel_class .= ' ccols-sm-' . (int) $items_mobile; } $carousel_class .= ' has-ccols-spacing'; if ( $enable_flick ) { $carousel_class .= ' flick-carousel'; } $options = array(); $options['themeConfig'] = true; if ( $slider_config ) { if ( $show_nav ) { if ( $nav_pos ) { $carousel_class .= ' ' . $nav_pos; } if ( $nav_type ) { $carousel_class .= ' ' . $nav_type; } if ( $show_nav_hover ) { $carousel_class .= ' show-nav-hover'; } if ( 'nav-style-1' == $nav_type ) { $carousel_class .= ' stage-margin'; $options['stagePadding'] = 25; } } $options['nav'] = $show_nav; $options['dots'] = $show_dots; if ( $show_dots ) { if ( $dots_pos ) { $carousel_class .= ' ' . $dots_pos; } if ( $dots_style ) { $carousel_class .= ' ' . $dots_style; } } } global $porto_settings; if ( ! empty( $items ) ) { $options['items'] = (int) $items; $options['xl'] = (int) $items; } if ( 'no' == $set_loop ) { $options['loop'] = false; } elseif ( 'yes' == $set_loop ) { $options['loop'] = true; } $options['lg'] = (int) $items_desktop; $options['md'] = (int) $items_tablets; $options['sm'] = (int) $items_mobile; $options['margin'] = $spacing || '0' == $spacing ? absint( $spacing ) : (int) $porto_settings['grid-gutter-width']; $options = json_encode( $options ); $items_row = (int) $items_row; if ( $items_row < 1 ) { $items_row = 1; } $args = array( 'post_type' => 'post', 'posts_per_page' => $number, ); if ( ! $cats ) { $cats = $cat; } if ( $cats ) { $args['cat'] = $cats; } $posts = new WP_Query( $args ); if ( $posts->have_posts() ) { $el_class = porto_shortcode_extract_class( $el_class ); if ( $className ) { $el_class .= ' ' . $className; } if ( ! empty( $shortcode_class ) ) { $el_class .= ' ' . trim( $shortcode_class ); } $output = '<div class="porto-recent-posts wpb_content_element ' . esc_attr( $el_class ) . '"'; if ( $animation_type ) { $output .= ' data-appear-animation="' . esc_attr( $animation_type ) . '"'; if ( $animation_delay ) { $output .= ' data-appear-animation-delay="' . esc_attr( $animation_delay ) . '"'; } if ( $animation_duration && 1000 != $animation_duration ) { $output .= ' data-appear-animation-duration="' . esc_attr( $animation_duration ) . '"'; } if ( false !== strpos( $animation_type, 'revealDir' ) ) { $output .= ' data-animation-reveal-clr="' . ( ! empty( $animation_reveal_clr ) ? esc_attr( $animation_reveal_clr ) : '' ) . '"'; } } $output .= '>'; $output .= porto_shortcode_widget_title( array( 'title' => $title, 'extraclass' => '', ) ); global $porto_post_view, $porto_post_btn_style, $porto_post_btn_size, $porto_post_btn_color, $porto_post_image_size, $porto_post_author, $porto_post_excerpt_length; $porto_post_view = $view; $porto_post_author = $author; $porto_post_btn_style = $btn_style; $porto_post_btn_size = $btn_size; $porto_post_btn_color = $btn_color; $porto_post_image_size = $image_size; $porto_post_excerpt_length = $excerpt_length; if ( isset( $porto_settings ) ) { if ( isset( $porto_settings['post-metas'] ) ) { $prev_post_metas = $porto_settings['post-metas']; } if ( ! $show_metas ) { $porto_settings['post-metas'] = array(); } } ob_start(); ?> <div class="post-carousel porto-carousel owl-carousel<?php echo esc_attr( $carousel_class ); ?>" data-plugin-options="<?php echo esc_attr( $options ); ?>"> <?php $i = 0; $tag_closed = true; while ( $posts->have_posts() ) { $posts->the_post(); global $previousday; unset( $previousday ); if ( 0 == $i % $items_row ) { echo '<div class="post-slide' . ( $items_row > 1 ? ' no-single' : '' ) . '">'; $tag_closed = false; } if ( $show_image ) { get_template_part( 'content', 'post-item' ); } else { get_template_part( 'content', 'post-item-no-image' ); } if ( $i % $items_row == $items_row - 1 ) { echo '</div>'; $tag_closed = true; } $i++; } if ( ! $tag_closed ) { echo '</div>'; } ?> </div> <?php $output .= ob_get_clean(); $porto_post_view = $porto_post_author = $porto_post_btn_style = $porto_post_btn_size = $porto_post_btn_color = $porto_post_image_size = $porto_post_excerpt_length = ''; if ( isset( $prev_post_metas ) ) { $porto_settings['post-metas'] = $prev_post_metas; } $output .= '</div>'; echo porto_filter_output( $output ); } wp_reset_postdata();
Save
Cancel