Server IP : 162.213.251.212 / Your IP : 3.12.151.89 [ Web Server : LiteSpeed System : Linux business55.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : allssztx ( 535) PHP Version : 8.1.31 Disable Function : NONE Domains : 1 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/allssztx/bestvalleywater.com/wp-content/themes/woodmart/ |
Upload File : |
<?php $classes = array(); $woodmart_loop = woodmart_loop_prop( 'woodmart_loop' ); $blog_design = woodmart_loop_prop( 'blog_design' ); $blog_style = woodmart_get_opt( 'blog_style', 'shadow' ); $classes[] = 'wd-post'; $classes[] = 'blog-design-' . $blog_design; $classes[] = 'blog-post-loop'; $post_format = get_post_format(); $thumb_classes = ''; $gallery_slider = apply_filters( 'woodmart_gallery_slider', true ); $gallery = array(); if ( ! is_single() && 'quote' === $post_format ) { woodmart_enqueue_inline_style( 'blog-loop-format-quote' ); } if ( 'shadow' === $blog_style ) { $classes[] = 'blog-style-bg'; if ( woodmart_get_opt( 'blog_with_shadow', true ) ) { $classes[] = 'wd-add-shadow'; } } else { $classes[] = 'blog-style-' . $blog_style; } if ( 'grid' === woodmart_loop_prop( 'blog_layout' ) ) { $classes[] = 'wd-col'; } if ( ! get_the_title() ) { $classes[] = 'post-no-title'; } if ( 'gallery' === $post_format && $gallery_slider ) { $gallery = get_post_gallery( false, false ); if ( ! empty( $gallery['src'] ) ) { $thumb_classes .= ' wd-carousel-container wd-post-gallery color-scheme-light'; } } ?> <article id="post-<?php the_ID(); ?>" <?php post_class( $classes ); ?>> <?php if ( 'shadow' === $blog_style ) : ?> <div class="wd-post-inner"> <?php endif; ?> <div class="wd-post-thumb<?php echo has_post_thumbnail() ? ' color-scheme-light' : ''; ?><?php echo esc_html( $thumb_classes ); ?>"> <?php if ( 'gallery' === $post_format && $gallery_slider && ! empty( $gallery['src'] ) ) : ?> <?php woodmart_enqueue_js_library( 'swiper' ); woodmart_enqueue_js_script( 'swiper-carousel' ); woodmart_enqueue_inline_style( 'swiper' ); ?> <div class="wd-carousel-inner"> <div class="wd-carousel wd-grid"<?php echo woodmart_get_carousel_attributes( array( 'autoheight' => 'yes' ) ); ?>> <div class="wd-carousel-wrap"> <?php foreach ( $gallery['src'] as $src ) { if ( preg_match( "/data:image/is", $src ) ) { continue; } ?> <div class="wd-carousel-item"> <?php echo apply_filters( 'woodmart_image', '<img src="' . esc_url( $src ) . '" />' ); ?> </div> <?php } ?> </div> </div> <?php woodmart_get_carousel_nav_template( ' wd-post-arrows wd-pos-sep wd-custom-style' ); ?> </div> <?php else : ?> <div class="wd-post-img"> <?php echo woodmart_get_post_thumbnail( 'large' ); // phpcs:ignore ?> </div> <?php endif; ?> <?php /* translators: %s: Post title */ ?> <a class="wd-post-link wd-fill" href="<?php echo esc_url( get_permalink() ); ?>" rel="bookmark" aria-label="<?php echo esc_attr( sprintf( __( 'Link on post %s', 'woodmart' ), esc_attr( get_the_title() ) ) ); ?>"></a> <?php if ( woodmart_loop_prop( 'parts_meta' ) ) : ?> <div class="wd-post-header"> <div class="wd-meta-author"> <?php woodmart_post_meta_author( true, false ); ?> </div> <div class="wd-post-actions"> <?php if ( woodmart_is_social_link_enable( 'share' ) ) : ?> <div class="wd-post-share wd-tltp wd-tltp-top"> <div class="wd-tooltip-label"> <?php if ( function_exists( 'woodmart_shortcode_social' ) ) { echo woodmart_shortcode_social( // phpcs:ignore array( 'size' => 'small', 'color' => 'light', ) );} ?> </div> </div> <?php endif ?> <?php if ( comments_open() ) : ?> <div class="wd-meta-reply"> <?php woodmart_post_meta_reply(); ?> </div> <?php endif; ?> </div> </div> <?php endif ?> </div> <div class="wd-post-content"> <div class="wd-post-entry-meta"> <?php if ( is_sticky() ) : ?> <div class="wd-featured-post"> <?php esc_html_e( 'Featured', 'woodmart' ); ?> </div> <?php endif; ?> <?php if ( woodmart_loop_prop( 'parts_meta' ) && get_the_category_list( ', ' ) ) : ?> <div class="wd-post-cat wd-style-default"> <?php echo get_the_category_list( ', ' ); // phpcs:ignore ?> </div> <?php endif ?> <div class="wd-modified-date"> <?php woodmart_post_modified_date(); ?> </div> <div class="wd-meta-date"> <?php echo esc_html( get_the_date( 'd M Y' ) ); ?> </div> </div> <?php if ( woodmart_loop_prop( 'parts_title' ) ) : ?> <h3 class="wd-entities-title title post-title"> <a href="<?php echo esc_url( get_permalink() ); ?>" rel="bookmark"> <?php the_title(); ?> </a> </h3> <?php endif ?> <?php if ( woodmart_loop_prop( 'parts_text' ) ) : ?> <div class="wd-entry-content"> <?php if ( is_search() ) : ?> <div class="entry-summary"> <?php the_excerpt(); ?> </div><!-- .entry-summary --> <?php else : ?> <?php woodmart_get_content( false ); ?> <?php wp_link_pages( array( 'before' => '<div class="page-links"><span class="page-links-title">' . esc_html__( 'Pages:', 'woodmart' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>', ) ); ?> <?php endif; ?> </div> <?php endif; ?> <?php if ( woodmart_loop_prop( 'parts_btn' ) ) : ?> <?php woodmart_render_read_more_btn(); ?> <?php endif; ?> </div> <?php if ( 'shadow' === $blog_style ) : ?> </div> <?php endif; ?> </article>