Skip to main content

Posts

Showing posts from March, 2021

get featured products

 <?php                                 $args = array(                                     'featured' => true,                                     'posts_per_page' => 16                                 );                                 $products = wc_get_products( $args );

get all woocommerce categories

 <?php                     $args = array(                         'taxonomy'   => "product_cat",                         'orderby'    => 'name',                         'order' => 'DESC',                     );                     $product_categories = get_terms($args);                     foreach ( $product_categories as $cat )             ...