Skip to content

Instantly share code, notes, and snippets.

@hivepress
Created April 26, 2022 16:45
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hivepress/c800229acf61803a43fac92d93a3ee71 to your computer and use it in GitHub Desktop.
Save hivepress/c800229acf61803a43fac92d93a3ee71 to your computer and use it in GitHub Desktop.
Change the allowed listing image formats #hivepress #listings
<?php
add_filter(
'hivepress/v1/models/listing',
function( $model ) {
$model['fields']['images']['formats'] = [ 'jpg', 'png', 'gif' ];
return $model;
},
100
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment