Skip to content

Instantly share code, notes, and snippets.

@neilgee
Last active October 2, 2017 05:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save neilgee/40ac51e005dc53e5752e4dcb7d27e26b to your computer and use it in GitHub Desktop.
Save neilgee/40ac51e005dc53e5752e4dcb7d27e26b to your computer and use it in GitHub Desktop.
WooCommerce Featured Products
<?php
$args = array(
'posts_per_page' => -1,
'post_type' => 'product',
'post_status' => 'publish',
'tax_query' => array(
array(
'taxonomy' => 'product_visibility',
'field' => 'name',
'terms' => 'featured',
'operator' => 'IN',
),
)
);
$featured_product = new WP_Query( $args );
if ( $featured_product->have_posts() ) :
echo '<div class="woocommerce columns-3"><ul class="products">';
while ( $featured_product->have_posts() ) : $featured_product->the_post();
$post_thumbnail_id = get_post_thumbnail_id();
$product_thumbnail = wp_get_attachment_image_src($post_thumbnail_id, $size = 'shop-feature');
$product_thumbnail_alt = get_post_meta( $post_thumbnail_id, '_wp_attachment_image_alt', true );
?>
<li class="product">
<a href="<?php the_permalink();?>">
<img src="<?php echo $product_thumbnail[0];?>" alt="<?php echo $product_thumbnail_alt;?>">
<h3 class="woocommerce-loop-product__title"><?php the_title();?></h3>
<button class="yellow-but">VIEW PRODUCT</button>
</a>
</li>
<?php
endwhile;
echo '</ul></div>';
endif;
wp_reset_query();
?>
<!-- Featured products loop -->
<?php
add_shortcode( 'woo_featured', 'wb_woo_featured' );
/*
*
* Featured Product Loop
*/
function wb_woo_featured() {
$args = array(
'post_type' => 'product',
'posts_per_page' => 3,
'post_status' => 'publish',
'tax_query' => array(
array(
'taxonomy' => 'product_visibility',
'field' => 'name',
'terms' => 'featured',
'operator' => 'IN'
),
),
);
$featured_product = new WP_Query( $args );
if ( $featured_product->have_posts() ) :
ob_start();
echo '<div class="woocommerce columns-3"><ul class="products">';
while ( $featured_product->have_posts() ) : $featured_product->the_post();
$product = wc_get_product( $featured_product->post->ID );
$post_thumbnail_id = get_post_thumbnail_id();
$product_thumbnail = wp_get_attachment_image_src($post_thumbnail_id, $size = 'shop-feature');
$product_thumbnail_alt = get_post_meta( $post_thumbnail_id, '_wp_attachment_image_alt', true );
// Featured Post Loop Output
// wc_get_template_part( 'content', 'product' );
?>
<li class="product">
<a href="<?php the_permalink();?>">
<img src="<?php echo $product_thumbnail[0];?>" alt="<?php echo $product_thumbnail_alt;?>">
<h3 class="woocommerce-loop-product__title"><?php the_title();?></h3>
<button class="yellow-but">VIEW PRODUCT</button>
</a>
</li>
<?php
endwhile;
echo '</ul></div>';
endif;
wp_reset_query();
return ob_get_clean();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment