$parent_cat_id, 'hide_empty' => false, ) ); // Собираем все ID: родительская + подкатегории $category_ids = array( $parent_cat_id ); foreach ( $subcats as $cat ) { $category_ids[] = $cat->term_id; } // Получаем 3 случайных поста из этих категорий $params = array( 'category__in' => $category_ids, 'posts_per_page' => 3, 'post_status' => 'publish', 'orderby' => 'rand', 'date_query' => array( array( 'after' => '1 month ago', 'inclusive' => true, ), ), ); $random_posts = get_posts( $params ); // Если нашли посты if ( $random_posts ) { // Выбираем случайный один из трёх $post = $random_posts[ array_rand( $random_posts ) ]; setup_postdata( $post ); ?>
Питомцы