function kb_get_product_group_items($product_id) { $terms = wp_get_post_terms( $product_id, 'kb_product_group' ); if (empty($terms) || is_wp_error($terms)) { return []; } $group = $terms[0]; $posts = get_posts([ 'post_type' => 'product', 'post_status' => 'publish', 'posts_per_page' => -1, 'post__not_in' => [$product_id], 'tax_query' => [ [ 'taxonomy' => 'kb_product_group', 'field' => 'term_id', 'terms' => $group->term_id, ] ], 'no_found_rows' => true, 'update_post_meta_cache' => false, 'update_post_term_cache' => false, ]); $items = []; foreach ($posts as $post) { $product = wc_get_product($post->ID); if (!$product) { continue; } $items[] = [ 'id' => $post->ID, 'card' => kb_get_product_loop_data($product), ]; } return $items; } دیدگاه‌ها برای: مجموعه سوالات کنکور مهندسی پزشکی https://sanjeshnovin.com/product/%d8%b3%d9%88%d8%a7%d9%84%d8%a7%d8%aa-%da%a9%d9%86%da%a9%d9%88%d8%b1-%d9%85%d9%87%d9%86%d8%af%d8%b3%db%8c-%d9%be%d8%b2%d8%b4%da%a9%db%8c/ آموزش آنلاین و فروش کتاب های دانشگاهی و آزمون سنجش Mon, 26 May 2025 12:13:35 +0000 hourly 1 https://wordpress.org/?v=6.9.5