Skip to content

Instantly share code, notes, and snippets.

@propertyhive
Created September 3, 2025 08:38
Show Gist options
  • Save propertyhive/7c7713ec14da2568831e4832cc19688b to your computer and use it in GitHub Desktop.
Save propertyhive/7c7713ec14da2568831e4832cc19688b to your computer and use it in GitHub Desktop.
add_filter( "houzez_property_feed_properties_due_import_xml", 'exclude_lease', 10, 2 );
function exclude_lease( $properties, $import_id )
{
$new_properties = array();
foreach ( $properties as $property )
{
if ( isset($property->Categories) && (string)$property->Categories === 'Lease' )
{
// ignore
}
else
{
$new_properties[] = $property;
}
}
return $new_properties;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment