File: /var/www/html/wpprotonperinggit/wp-content/themes/voiture/woocommerce/single-product/related.php
<?php
/**
* Related Products
*
* @author WooThemes
* @package WooCommerce/Templates
* @version 3.9.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
$show_product_related = voiture_get_config('show_product_related', true);
if ( !$show_product_related ) {
return;
}
global $product;
if ( empty( $product ) || ! $product->exists() ) {
return;
}
$columns = voiture_get_config('related_product_columns', 4);
$per_page = voiture_get_config('number_product_related', 4);
$related = wc_get_related_products( $product->get_id(), $per_page );
if ( sizeof( $related ) == 0 ) return;
$args = apply_filters( 'woocommerce_related_products_args', array(
'post_type' => 'product',
'ignore_sticky_posts' => 1,
'no_found_rows' => 1,
'posts_per_page' => $per_page,
'orderby' => $orderby,
'post__in' => $related,
'post__not_in' => array( $product->get_id() )
) );
$products = new WP_Query( $args );
if ( $products->have_posts() ) : ?>
<div class="related products">
<div class="woocommerce">
<h3 class="widget-title"><?php esc_html_e( 'Related Products', 'voiture' ); ?></h3>
<?php wc_get_template( 'layout-products/grid.php' , array( 'loop' => $products, 'columns' => $columns ) ); ?>
</div>
</div>
<?php endif;
wp_reset_postdata();