Created
March 19, 2025 13:05
-
-
Save propertyhive/e3e215a5f0ed0c4463e401e1cb0d103b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( "houzez_property_feed_property_imported_resales_online_api", 'hpf_custom_functionality', 10, 4 ); | |
function hpf_custom_functionality( $post_id, $property, $import_id, $instance_id ) | |
{ | |
if ( | |
isset($property['PropertyFeatures']['Category'][0]['Value']) && | |
is_array($property['PropertyFeatures']['Category'][0]['Value']) && | |
in_array('New Development', $property['PropertyFeatures']['Category'][0]['Value']) | |
) | |
{ | |
// Yes it exists. Do something here. Set a postmeta or similar using update_post_meta() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment