Sale!
Sale!
Sale!
Sale!
Sale!
Rated 4.00 out of 5
Sale!
Sale!
Sale!
Sale!
Rated 5.00 out of 5
Sale!
Air Jordan 1
Sale!
Sale!
// Hiển thị sản phẩm liên quan dựa trên Tag trong WooCommerce add_filter('woocommerce_related_products_args', 'custom_related_products_by_tag'); function custom_related_products_by_tag($args) { global $product; if (!$product) { return $args; } $terms = wp_get_post_terms($product->get_id(), 'product_tag'); $term_ids = wp_list_pluck($terms, 'term_id'); if (!empty($term_ids)) { $args['tax_query'] = array( array( 'taxonomy' => 'product_tag', // Đã sửa lỗi cú pháp 'field' => 'term_id', 'terms' => $term_ids, ), ); } return $args; }