'post', 'post_status' => 'publish', 'orderby' => 'post_count', 'order' => 'DESC', 'posts_per_page' => 4, 'date_query' => array( array( 'after' => $duration, ), ), ) ); if ( ! $posts ) { return 0; } // get all distinct ID from $posts return count( array_unique( wp_list_pluck( $posts, 'post_author' ) ) ); }