ID, 'post_layout', true );
$post_layout = ( 'default' == $post_layout || ! $post_layout ) ? ( isset( $porto_settings['post-content-layout'] ) ? $porto_settings['post-content-layout'] : 'large' ) : $post_layout;
if ( 'post' == $post->post_type ) :
if ( ! empty( $porto_settings['post-backto-blog'] ) ) :
?>
ID );
if ( $related_posts->have_posts() ) :
$options = array();
$options['themeConfig'] = true;
$post_related_cols = isset( $porto_settings['post-related-cols'] ) ? $porto_settings['post-related-cols'] : '4';
$options['lg'] = $post_related_cols;
if ( in_array( $porto_layout, porto_options_sidebars() ) ) {
$options['lg']--;
}
if ( $options['lg'] < 1 ) {
$options['lg'] = 1;
}
$options['md'] = $post_related_cols - 1;
if ( $options['md'] < 1 ) {
$options['md'] = 1;
}
$options['sm'] = $post_related_cols - 2;
if ( $options['sm'] < 1 ) {
$options['sm'] = 1;
}
$options['margin'] = (int) $porto_settings['grid-gutter-width'];
$carousel_class = 'post-carousel porto-carousel owl-carousel show-nav-title has-ccols has-ccols-spacing ccols-1';
$carousel_class .= ' ccols-lg-' . (int) $options['lg'];
if ( $options['md'] > 1 ) {
$carousel_class .= ' ccols-md-' . (int) $options['md'];
}
if ( $options['sm'] > 1 ) {
$carousel_class .= ' ccols-sm-' . (int) $options['sm'];
}
$options = json_encode( $options );
?>
', '' ); ?>
have_posts() ) {
$related_posts->the_post();
get_template_part( 'content', 'post-item' );
}
?>