Woodmart Content modify
Modifikasi thema woodmart
2024-11-11 06:40:48 - Coderja
<?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_single() && !$is_shortcode ) { $classes[] = 'post-single-page'; if ( is_singular( 'post' ) && $is_large_image ) { $classes[] = 'post-single-large-image'; } } 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"> <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"> <div class="entry-content wd-entry-content<?php echo woodmart_get_old_classes( ' woodmart-entry-content' ); //phpcs:ignore. ?>"> <?php woodmart_get_content( woodmart_loop_prop( 'parts_btn' ), ( 'full' === woodmart_get_opt( 'blog_excerpt' ) || ( is_single() && ! $is_shortcode ) ) ); ?> <?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 // Pindahkan bagian judul dan meta di sini if ( woodmart_loop_prop( 'parts_meta' ) && ( ! is_single() || $is_shortcode ) ): ?> <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; ?> <?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' => 0, 'comments' => ( ! is_single() ) ? 1 : 0, 'author_label' => 'long' )); ?> </div><!-- .entry-meta --> <?php endif; ?> </div> <!-- .article-body-container --> </div><!-- .article-inner --> </article><!-- #post --> <?php // Increase loop count woodmart_set_loop_prop( 'woodmart_loop', $woodmart_loop + 1 );