Skip to content

Commit

Permalink
Don't restrict the count of projects to just 200
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Abraham <[email protected]>
  • Loading branch information
cjyabraham committed Nov 7, 2024
1 parent b671e7d commit c0fa869
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -476,9 +476,7 @@ public static function get_homepage_project_metrics() {
$query_args = array(
'post_type' => 'lf_project',
'post_status' => array( 'publish' ),
'posts_per_page' => 200,
'orderby' => 'title',
'order' => 'ASC',
'posts_per_page' => 500,
);

$project_query = new WP_Query( $query_args );
Expand Down

0 comments on commit c0fa869

Please sign in to comment.