Skip to content

Instantly share code, notes, and snippets.

@hivepress
Created April 26, 2022 17:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hivepress/8e10a3435832894f575c6c4b8672de66 to your computer and use it in GitHub Desktop.
Save hivepress/8e10a3435832894f575c6c4b8672de66 to your computer and use it in GitHub Desktop.
Moderate any listing title or description changes (switch status to Pending) #hivepress #listings
<?php
add_filter(
'hivepress/v1/forms/listing_update',
function( $form ) {
$form['fields']['title']['_moderated'] = true;
$form['fields']['description']['_moderated'] = true;
return $form;
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment