Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save propertyhive/c0d6b2f4e9d516fa3218fb11dd744c9d to your computer and use it in GitHub Desktop.
Save propertyhive/c0d6b2f4e9d516fa3218fb11dd744c9d to your computer and use it in GitHub Desktop.
add_action( "houzez_property_feed_property_imported_resales_online", 'from_price_qualifier', 10, 4 );
function from_price_qualifier($post_id, $property, $import_id, $instance_id)
{
if ( (string)$property->price == (string)$property->price_to )
{
update_post_meta($post_id, 'fave_property_price_prefix', 'From');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment