admin管理员组文章数量:1287630
How can I select the last 5 products for each product category? I tried to select last 5 products from each category and add the tag "new". I saw that is WP_QUERY, but I didn't find a parameter that helps me. I have this code that works fine for add the tag "new" for products that is newer than 30 days. Thank you in advance, I really appreciate.
function display_new_loop_woocommerce() {
global $product;
$datetime_now = new WC_DateTime();
$timestamp_now = $datetime_now->getTimestamp();
$args = array(
'post_type' => 'product', // your product post type
'posts_per_page' => - 1,
);
$posts = get_posts($args);
foreach ($posts as $post):
setup_postdata($post);
$product = new WC_Product($post->ID);
$datetime_created = $product->get_date_created();
$timestamp_created = $datetime_created->getTimestamp();
$time_delta = $timestamp_now - $timestamp_created;
$sixty_days = 30 * 24 * 60 * 60;
if ( $time_delta < $sixty_days ) {
if( ! has_term( '', 'product_tag', $post->ID ) ) :
wp_set_object_terms($post->ID, array('nou'), 'product_tag');
endif;
} else {
if( has_term( '', 'product_tag', $post->ID ) ) :
wp_remove_object_terms($post->ID, array('nou'), 'product_tag');
endif;
}
wp_reset_postdata();
endforeach;
}
How can I select the last 5 products for each product category? I tried to select last 5 products from each category and add the tag "new". I saw that is WP_QUERY, but I didn't find a parameter that helps me. I have this code that works fine for add the tag "new" for products that is newer than 30 days. Thank you in advance, I really appreciate.
function display_new_loop_woocommerce() {
global $product;
$datetime_now = new WC_DateTime();
$timestamp_now = $datetime_now->getTimestamp();
$args = array(
'post_type' => 'product', // your product post type
'posts_per_page' => - 1,
);
$posts = get_posts($args);
foreach ($posts as $post):
setup_postdata($post);
$product = new WC_Product($post->ID);
$datetime_created = $product->get_date_created();
$timestamp_created = $datetime_created->getTimestamp();
$time_delta = $timestamp_now - $timestamp_created;
$sixty_days = 30 * 24 * 60 * 60;
if ( $time_delta < $sixty_days ) {
if( ! has_term( '', 'product_tag', $post->ID ) ) :
wp_set_object_terms($post->ID, array('nou'), 'product_tag');
endif;
} else {
if( has_term( '', 'product_tag', $post->ID ) ) :
wp_remove_object_terms($post->ID, array('nou'), 'product_tag');
endif;
}
wp_reset_postdata();
endforeach;
}
Share
Improve this question
asked Sep 17, 2021 at 7:52
user208374user208374
1 Answer
Reset to default 0You have to ways to achieve this I guess. The one that you pick depends on how many products and how many categories are present in your website.
If you have an huge amount of products but not so many categories, then probably the best approach is to get the categories first:
$product_categories = get_terms( ['taxonomy' => 'product_cat', 'hide_empty' => false] );
and then iterate over them to get the most recent products for each category with a new query for each category.
On the other hand, if you have many categories, this would lead to many queries performed.
It this case you could think to get all the products as you already do, iterate over them and for each post:
- Get all the categories IDs:
$product->get_category_ids()
- Build a multidimensional array that has categories IDs as first set of keys, and product timestamp as second set of keys.
It will be something like this:
[
5 => [
'123456789' => $product1
'123456877' => $product2
...
],
10 => [
'123456888' => $product3
...
]
]
Then you can sort the array by second set of keys and get the first 5 elements of each nested array.
NOTE: In any case, whatever you choice, if you have a good amount of products and/or categories, this would not be a quick operation, so I'd suggest you to use WP Transients to store the IDs that you retrieve, and keep them saved until you add a new product, remove an existing product or change the category of an existing product (and maybe invalidate after a fixed amount of time, just to be sure).
本文标签: phpGet the last 5 products from each category
版权声明:本文标题:php - Get the last 5 products from each category 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741315163a2371870.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论