>
' . esc_html( $element_title ) . '';
}
?>
have_posts() ) {
woodmart_carousel_query_item( $query );
}
}
?>
the_post(); // Get post from query
} elseif ( $product ) {
$post_object = get_post( $product->get_id() );
$post = $post_object;
setup_postdata( $post );
}
if ( get_option( 'woocommerce_hide_out_of_stock_items' ) === 'yes' && ! $product && is_object( $post ) ) {
$product = wc_get_product( $post->ID );
// Duplicate condition from content-product.php to remove the SLIDE wrapper.
if ( $product && method_exists( $product, 'is_visible' ) && ! $product->is_visible() ) {
return;
}
}
?>