Skip to content

Commit

Permalink
Show draft and published Sponsors in sponsorship agreement dropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
daledupreez committed Jul 19, 2024
1 parent 2ecbc65 commit 6aada25
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class WordCamp_Docs_Template_Sponsorship_Agreement implements WordCamp_Docs_Temp
public function form_prefill_select( $data ) {
$sponsors = get_posts( array(
'post_type' => 'wcb_sponsor',
'post_status' => 'publish',
'post_status' => array( 'publish', 'draft' ),
'posts_per_page' => 500,
) );

Expand Down

0 comments on commit 6aada25

Please sign in to comment.