Answer the question
In order to leave comments, you need to log in
First product from the WooCommerce category?
It is necessary to determine whether the product is the first in the list of products from the category - how to do this?
Ie, for example, the category Cars and products in it:
Skoda
Hyndai
Ford
...
On the product page, you need to understand that Skoda is the first in order (sorting: default) product from the category Cars.
Answer the question
In order to leave comments, you need to log in
$_first_product = get_posts( array(
'numberposts' => 1,
'post_type' => 'product',
'category' => $_categories,
'post_status' => 'publish',
//'orderby'=>'menu_order',
'order'=>'ASC',
) );
if ( is_array($_first_product) and count($_first_product) and $_first_product[0]->ID == $_product_id )
$_is_first_product = true;
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question