Skip to content

Instantly share code, notes, and snippets.

@hivepress
Created April 26, 2022 18:00
Embed
What would you like to do?
Set the minimum description length in the listing edit form #hivepress #listings
<?php
add_filter(
'hivepress/v1/forms/listing_update',
function( $form ) {
$form['fields']['description']['min_length'] = 123;
return $form;
},
1000
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment