| Server IP : 172.67.147.195 / Your IP : 216.73.216.142 Web Server : Apache/2 System : Linux hosting8537.lvs 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : mienphi ( 1014) PHP Version : 8.2.14 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/mienphi/public_html/wp-content/themes/eduma/inc/widgets/courses-collection/tpl/ |
Upload File : |
<?php
global $post;
$limit = $instance['limit'] ? $instance['limit'] : 4;
$columns = $instance['columns'] ? $instance['columns'] : 3;
$feature_items = $instance['feature_items'] ? $instance['feature_items'] : 2;
$condition = array(
'post_type' => 'lp_collection',
'posts_per_page' => $limit,
'ignore_sticky_posts' => true,
);
$items_html = '';
$the_query = new WP_Query( $condition );
if ( $the_query->have_posts() ) :
while ( $the_query->have_posts() ) : $the_query->the_post();
ob_start();
?>
<div class="item">
<div class="thumbnail">
<?php
echo '<a href="' . esc_url( get_the_permalink() ) . '" class="feature-image">';
echo thim_get_feature_image( get_post_thumbnail_id( $post->ID ), 'full', 300, 210, get_the_title() );
echo '</a>';
?>
</div>
<div class="content">
<h3><a class="title" href="<?php echo esc_url( get_the_permalink() ); ?>"> <?php echo get_the_title(); ?></a></h3>
<?php echo thim_excerpt(10);?>
</div>
</div>
<?php
$items_html .= ob_get_contents();
ob_end_clean();
endwhile;
endif;
wp_reset_postdata();
?>
<div class="thim-courses-collection">
<div class="thim-carousel-wrapper thim-collection-carousel" data-visible="<?php echo esc_attr( $columns ); ?>"
data-pagination="0" data-navigation="1" data-autoplay="0">
<?php echo ent2ncr( $items_html ); ?>
</div>
</div>