Server IP : 162.213.251.212 / Your IP : 3.144.167.32 [ 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 /** * The default template for displaying content * * Used for both single and index/archive/search. */ // woodmart_setup_loop(); $woodmart_loop = woodmart_loop_prop( 'woodmart_loop' ); $blog_design = woodmart_loop_prop( 'blog_design' ); $is_shortcode = woodmart_loop_prop( 'blog_type' ) == 'shortcode'; $is_large_image = woodmart_get_opt( 'single_post_design' ) == 'large_image'; $classes = array(); $post_format = get_post_format(); $thumb_classes = ''; if ( is_singular( 'post' ) && $is_large_image ) { $classes[] = 'post-single-large-image'; } if( is_single() && !$is_shortcode ) { $classes[] = 'post-single-page'; } else { $classes[] = 'wd-post'; $classes[] = 'blog-design-' . $blog_design; $classes[] = 'blog-post-loop'; if( $blog_design == 'chess' ) { $classes[] = 'blog-design-small-images'; } if ( 'quote' === $post_format ) { woodmart_enqueue_inline_style( 'blog-loop-format-quote' ); } } if ( ! is_single() || $is_shortcode ) { $blog_style = woodmart_get_opt( 'blog_style', 'shadow' ); 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( is_single() && !$is_shortcode ) { $blog_design = 'default'; } if( ( 'grid' === woodmart_loop_prop( 'blog_layout' ) ) && ( $is_shortcode || ! is_single() ) ){ $classes[] = 'wd-col'; } if( get_the_title() == '' ){ $classes[] = 'post-no-title'; } $gallery_slider = apply_filters( 'woodmart_gallery_slider', true ); $gallery = array(); 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'; } } $random = 'carousel-' . wp_rand( 100, 999 ); ?> <article id="post-<?php the_ID(); ?>" <?php post_class( $classes ); ?>> <div class="article-inner"> <?php if ( $blog_design == 'default-alt' || is_single() && ! $is_shortcode && ! $is_large_image ): ?> <?php if ( woodmart_loop_prop( 'parts_meta' ) && get_the_category_list( ', ' ) ): ?> <div class="meta-post-categories wd-post-cat wd-style-with-bg"><?php echo get_the_category_list( ', ' ); ?></div> <?php endif ?> <?php if ( is_single() && woodmart_loop_prop( 'parts_title' ) && ! $is_shortcode ) : ?> <h1 class="wd-entities-title title post-title"><?php the_title(); ?></h1> <?php elseif( 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; // is_single() ?> <?php if ( woodmart_loop_prop( 'parts_meta' ) ): ?> <div class="entry-meta wd-entry-meta"> <?php woodmart_post_meta(array( 'author' => 1, 'author_avatar' => 1, 'date' => 0, 'comments' => ( ! is_single() ) ? 1 : 0, 'author_label' => 'long' )); ?> </div><!-- .entry-meta --> <?php endif ?> <?php endif ?> <header class="entry-header"> <?php if ( ( has_post_thumbnail() || ! empty( $gallery['src'] ) ) && ! post_password_required() && ! is_attachment() && woodmart_loop_prop( 'parts_media' ) ) : ?> <figure id="<?php echo esc_attr( $random ); ?>" class="entry-thumbnail<?php echo esc_attr( $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 elseif ( ! is_single() || $is_shortcode ): ?> <div class="post-img-wrapp"> <a href="<?php echo esc_url( get_permalink() ); ?>"> <?php echo woodmart_get_post_thumbnail( 'large' ); ?> </a> </div> <div class="post-image-mask"> <span></span> </div> <?php elseif ( is_single() && ! $is_large_image ): ?> <?php the_post_thumbnail(); ?> <?php endif ?> </figure> <?php endif; ?> <?php if ( is_single() && ! $is_large_image || ! is_single() ): ?> <?php woodmart_post_date( array( 'style' => 'wd-style-with-bg', ) ); ?> <?php endif ?> </header><!-- .entry-header --> <div class="article-body-container"> <?php if ( $blog_design != 'default-alt' && ( ! is_single() || $is_shortcode ) ): ?> <?php if ( woodmart_loop_prop( 'parts_meta' ) && get_the_category_list( ', ' ) ): ?> <div class="meta-categories-wrapp"><div class="meta-post-categories wd-post-cat wd-style-with-bg"><?php echo get_the_category_list( ', ' ); ?></div></div> <?php endif ?> <?php if ( is_single() && woodmart_loop_prop( 'parts_title' ) && !$is_shortcode ) : ?> <h1 class="wd-entities-title post-title"><?php the_title(); ?></h1> <?php elseif( 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; // is_single() ?> <?php if ( woodmart_loop_prop( 'parts_meta' ) && ( ! is_single() || $is_shortcode ) ): ?> <div class="entry-meta wd-entry-meta"> <?php woodmart_post_meta(array( 'author' => 1, 'author_avatar' => 1, 'date' => false, 'comments' => 1, 'author_label' => ( $blog_design == 'masonry' || $blog_design == 'small-images' || $blog_design == 'chess' || $blog_design == 'mask' ) ? 'short' : 'long' )); ?> </div><!-- .entry-meta --> <?php if ( woodmart_is_social_link_enable( 'share' ) ): ?> <div class="hovered-social-icons wd-tltp wd-tltp-top"> <div class="wd-tooltip-label"> <?php if( function_exists( 'woodmart_shortcode_social' ) ) echo woodmart_shortcode_social( array('size' => 'small', 'color' => 'light' ) ); ?> </div> </div> <?php endif ?> <?php endif ?> <?php endif ?> <?php if ( is_search() && woodmart_loop_prop( 'parts_text' ) && 'gallery' !== get_post_format() ) : // Only display Excerpts for Search. ?> <div class="entry-summary"> <?php echo get_the_excerpt(); //phpcs:ignore ?> </div><!-- .entry-summary --> <?php else : ?> <?php $parts_btn = woodmart_loop_prop( 'parts_btn' ); $is_full_content = 'full' === woodmart_get_opt( 'blog_excerpt' ) || ( is_single() && ! $is_shortcode ); ?> <?php if ( woodmart_loop_prop( 'parts_text' ) ) : ?> <div class="entry-content wd-entry-content<?php echo woodmart_get_old_classes( ' woodmart-entry-content' ); //phpcs:ignore. ?>"> <?php woodmart_get_content( $parts_btn, $is_full_content ); ?> <?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>', ) ); ?> </div><!-- .entry-content --> <?php endif; ?> <?php if ( ! $is_full_content && $parts_btn ) : ?> <?php woodmart_render_read_more_btn( 'link' ); ?> <?php endif; ?> <?php endif; ?> <?php if ( woodmart_loop_prop( 'parts_meta' ) && 'default-alt' === $blog_design && ! is_single() ) : ?> <div class="share-with-lines"> <span class="left-line"></span> <?php if ( woodmart_is_social_link_enable( 'share' ) ) : ?> <?php if( function_exists( 'woodmart_shortcode_social' ) ) echo woodmart_shortcode_social( array( 'style' => 'bordered', 'size' => 'small', 'form' => 'circle' ) ); ?> <?php endif ?> <span class="right-line"></span> </div> <?php endif; ?> <?php if ( is_single() && get_the_author_meta( 'description' ) && !$is_shortcode ) : ?> <footer class="entry-author"> <?php get_template_part( 'author-bio' ); ?> </footer><!-- .entry-author --> <?php endif; ?> </div> </div> </article><!-- #post --> <?php // Increase loop count woodmart_set_loop_prop( 'woodmart_loop', $woodmart_loop + 1 );