-
-
Save tharlab/85f6982fffe2110e9a6c662625672b8f to your computer and use it in GitHub Desktop.
Limit the maximum number of listings per user account #hivepress #listings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( | |
'hivepress/v1/forms/listing_submit/errors', | |
function( $errors, $form ) { | |
$listing = $form->get_model(); | |
if ( $listing && $listing->get_user__id() ) { | |
$listing_count = \HivePress\Models\Listing::query()->filter( | |
[ | |
'status__in' => [ 'publish', 'pending', 'draft' ], | |
'user' => $listing->get_user__id(), | |
] | |
)->get_count(); | |
if ( $listing_count >= 123 ) { | |
$errors[] = 'Only 123 listings per account are allowed.'; | |
} | |
} | |
return $errors; | |
}, | |
1000, | |
2 | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
limit by date, [ 'created_date' => 'desc' ]
https://docs.hivepress.io/developer-docs/framework/models/making-queries