Skip to content

Instantly share code, notes, and snippets.

View guizeras's full-sized avatar
💭
Focusing

Gui Carvalho guizeras

💭
Focusing
View GitHub Profile
@hivepress
hivepress / functions.php
Last active February 27, 2024 09:46
Change the maximum number of images per listing #hivepress #listings
<?php
add_filter(
'hivepress/v1/models/listing',
function( $model ) {
$model['fields']['images']['max_files'] = 123;
return $model;
},
100
);