Server IP : 66.29.132.124 / Your IP : 18.222.184.207 Web Server : LiteSpeed System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : wavevlvu ( 1524) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/wavevlvu/misswavenigeria.com/wp-content/themes/siteorigin-unwind/loops/ |
Upload File : |
<?php /** * Loop Name: Posts Slider * * Post loop for use with the SiteOrigin Post Loop widget in Page Builder. * * @since siteorigin-unwind 1.0.4 * * @license GPL 2.0 */ wp_enqueue_style( 'siteorigin-unwind-flexslider' ); wp_enqueue_script( 'jquery-flexslider' ); if ( have_posts() ) { ?> <div class="flexslider featured-posts-slider"> <ul class="slides featured-posts-slides"> <?php /* Start the Loop */ ?> <?php while ( have_posts() ) { the_post(); ?> <?php $thumbnail = has_post_thumbnail() ? wp_get_attachment_url( get_post_thumbnail_id() ) : false; ?> <li class="featured-post-slide" <?php if ( ! empty( $thumbnail ) ) { echo 'style="background-image: url( \'' . esc_url( $thumbnail ) . '\' )"'; } ?>> <header class="slide-content <?php echo siteorigin_setting( 'blog_featured_slider_overlay' ) ? 'slide-overlay' : ''; ?>"> <a class="slide-entry-link" href="<?php the_permalink(); ?>"></a> <div class="slide-inner"> <div class="slide-inner-cell"> <div class="entry-meta"> <?php siteorigin_unwind_post_meta(); ?> </div> <?php the_title( '<h2 class="entry-title">', '</h2>' ); ?> <div class="entry-button"> <a class="button" href="<?php esc_url( the_permalink() ); ?>"><?php echo esc_html__( 'Continue Reading', 'siteorigin-unwind' ); ?></a> </div> </div> </div> </header> </li> <?php } ?> </ul> </div> <?php } ?>